@charset "UTF-8";
/*------------------------------------*    STYLE.CSS
\*------------------------------------*/
/**
 *
 * sass --watch style.scss:style.min.css --style compressed
 *
 * Here we pull in some variables, include the inuit.css framework, then add our
 * project-specific components afterwards.
 */
/**
 * Setup
 */
/*------------------------------------*    VARS.SCSS
\*------------------------------------*/
/**
 * Any variables you find set in inuit.css’ `_vars.scss` that you do not wish to
 * keep, simply redefine here. This means that if inuit.css, for example, sets
 * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare
 * that variable in this file. inuit.css ignores its own variables in favour of
 * using your own, so you can completely modify how inuit.css works without ever
 * having to alter the framework itself.
 */
/*------------------------------------*    $OBJECTS-AND-ABSTRACTIONS
\*------------------------------------*/
/**
 * All of inuit.css’ objects and abstractions are initially turned off by
 * default. This means that you start any project with as little as possible,
 * and introducing objects and abstractions is as simple as switching the
 * following variables to `true`.
 */
/*------------------------------------*    $OVERRIDES
\*------------------------------------*/
/**
 * Place any variables that should override inuit.css’ defaults here.
 */
/*------------------------------------*    $CUSTOM
\*------------------------------------*/
/**
 * Place any of your own variables that sit on top of inuit.css here.
 */
/**
 * Place any variables that sit on top of revtrac vars
 */
/*------------------------------------*    INUIT.CSS
\*------------------------------------*/
/*!*
 *
 * inuitcss.com -- @inuitcss -- @csswizardry
 *
 */
/**
 * inuit.css acts as a base stylesheet which you should extend with your own
 * theme stylesheet.
 *
 * inuit.css aims to do the heavy lifting; sorting objects and abstractions,
 * design patterns and fiddly bits of CSS, whilst leaving as much design as
 * possible to you. inuit.css is the scaffolding to your decorator.
 *
 * This stylesheet is heavily documented and contains lots of comments, please
 * take care to read and refer to them as you build. For further support please
 * tweet at @inuitcss.
 *
 * Owing to the amount of comments please only ever use minified CSS in
 * production. This file is purely a dev document.
 *
 * The table of contents below maps to section titles of the same name, to jump
 * to any section simply run a find for $[SECTION-TITLE].
 *
 * Most objects and abstractions come with a chunk of markup that you should be
 * able to paste into any view to quickly see how the CSS works in conjunction
 * with the correct HTML.
 *
 * inuit.css is written to this standard: github.com/csswizardry/CSS-Guidelines
 *
 * LICENSE
 *
 * Copyright 2013 Harry Roberts
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Thank you for choosing inuit.css. May your web fonts render perfectly.
 */
/*------------------------------------*    $CONTENTS
\*------------------------------------*/
/**
 * CONTENTS............You’re reading it!
 * WARNING.............Here be dragons!
 * IMPORTS.............Begin importing the sections below
 *
 * MIXINS..............Super-simple Sass stuff
 * NORMALIZE...........normalize.css
 * RESET...............Set some defaults
 * CLEARFIX............
 * SHARED..............Shared declarations
 *
 * MAIN................High-level elements like `html`, `body`, etc.
 * HEADINGS............Double-stranded heading hierarchy
 * PARAGRAPHS..........
 * SMALLPRINT..........Smaller text elements like `small`
 * QUOTES..............
 * CODE................
 * LISTS...............
 * IMAGES..............
 * TABLES..............
 * FORMS...............
 *
 * GRIDS...............Fluid, proportional and nestable grids
 * FLEXBOX.............Crudely emulate flexbox
 * COLUMNS.............CSS3 columns
 * NAV.................A simple abstraction to put a list in horizontal nav mode
 * OPTIONS.............Grouped nav items
 * PAGINATION..........Very stripped back, basic paginator
 * BREADCRUMB..........Simple breadcrumb trail object
 * MEDIA...............Media object
 * MARGINALIA..........Simple marginalia content
 * ISLAND..............Boxed off content
 * BLOCK-LIST..........Blocky lists of content
 * MATRIX..............Gridded lists
 * SPLIT...............A simple split-in-two object
 * THIS-OR-THIS........Options object
 * LINK-COMPLEX........
 * FLYOUT..............Flyout-on-hover object
 * ARROWS..............CSS arrows
 * SPRITE..............Generic spriting element
 * ICON-TEXT...........Icon and text couplings
 * BEAUTONS............Use the beautons micro library
 * LOZENGES............Basic lozenge styles
 * RULES...............Horizontal rules
 * STATS...............Simple stats object
 * GREYBOX.............Wireframing styles
 *
 * WIDTHS..............Width classes for use alongside the grid system etc.
 * PUSH................Push classes for manipulating grids
 * PULL................Pull classes for manipulating grids
 * BRAND...............Helper class to apply brand treatment to elements
 * HELPER..............A series of helper classes to use arbitrarily
 * DEBUG...............Enable to add visual flags for debugging purposes
 */
/*------------------------------------*    $WARNING
\*------------------------------------*/
/*
 * inuit.css, being an OO framework, works in keeping with the open/closed
 * principle. The variables you set previously are now being used throughout
 * inuit.css to style everything we need for a base. Any modules styles SHOULD
 * NOT be added or modified in inuit.css directly, but added via your theme
 * stylesheet as per the open/closed principle:
 *
 * csswizardry.com/2012/06/the-open-closed-principle-applied-to-css
 *
 * Try not to edit any CSS beyond this point; if you find you need to do so
 * it is a failing of the framework so please tweet at @inuitcss.
 */
/*------------------------------------*    $IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default color for objects’ borders etc.
 */
/*------------------------------------*    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*------------------------------------*    $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:
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/*
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/*
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/*
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/*
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/*
 * 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
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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.
 */
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; }

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

/*
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/*------------------------------------*    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
    * Let’s make the box model all nice, shall we...?
    */
*, *:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * The usual...
 */
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 underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic; }

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer; }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none; }

/*------------------------------------*    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after, .nav:after, .island:after,
.islet:after, .flex-grid:after, .flex-grid__item:after, .block.block--event-snapshot:after {
  content: "";
  display: table;
  clear: both; }

/*------------------------------------*    $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
 */
/**
 * Base elements
 */
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre,
.form-fields > li,
.gform_fields > li,
.media,
.island,
.islet {
  margin-bottom: 20px;
  margin-bottom: 1.33333rem; }
  .islet h1, .islet h2, .islet h3, .islet h4, .islet h5, .islet h6, .islet hgroup, .islet
  ul, .islet ol, .islet dl, .islet
  blockquote, .islet p, .islet address, .islet
  table, .islet
  fieldset, .islet figure, .islet
  pre,
  .islet .form-fields > li,
  .islet .gform_fields > li, .islet
  .media, .islet
  .island, .islet
  .islet {
    margin-bottom: 10px;
    margin-bottom: 0.66667rem; }

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 40px;
  margin-bottom: 2.66667rem; }

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 18px;
  margin-bottom: 1.2rem; }

/**
 * 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: 40px;
  margin-left: 2.66667rem; }

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*    $MAIN
\*------------------------------------*/
html {
  font: 0.9375em/1.73333 "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  overflow-y: scroll;
  min-height: 100%; }

/*------------------------------------*    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .alpha {
  font-size: 50px;
  font-size: 3.33333rem;
  line-height: 1.04; }

h2, .beta {
  font-size: 40px;
  font-size: 2.66667rem;
  line-height: 1.3; }

h3, .gamma {
  font-size: 30px;
  font-size: 2rem;
  line-height: 1.73333; }

h4, .delta {
  font-size: 25px;
  font-size: 1.66667rem;
  line-height: 1.04; }

h5, .epsilon {
  font-size: 17px;
  font-size: 1.13333rem;
  line-height: 1.52941; }

h6, .zeta {
  font-size: 16px;
  font-size: 1.06667rem;
  line-height: 1.625; }

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0; }

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 60px;
  font-size: 4rem;
  line-height: 1.3; }

.mega {
  font-size: 50px;
  font-size: 3.33333rem;
  line-height: 1.04; }

.kilo {
  font-size: 45px;
  font-size: 3rem;
  line-height: 1.15556; }

/*------------------------------------*    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 16.875px;
  font-size: 1.125rem;
  line-height: 1.54074; }

/*------------------------------------*    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 12px;
  font-size: 0.8rem;
  line-height: 2.16667; }

.micro {
  font-size: 10px;
  font-size: 0.66667rem;
  line-height: 2.6; }

/*------------------------------------*    $QUOTES
\*------------------------------------*/
/**
 * If English quotes are set in `_vars.scss`, define them here.
 */
/**
 * Big up @boblet: html5doctor.com/blockquote-q-cite
 */
/**
 * Inline quotes.
 */
q {
  quotes: "‘" "’" "\\201C " "\\201D "; }
  q:before {
    content: "\2018";
    content: open-quote; }
  q:after {
    content: "\2019";
    content: close-quote; }
  q q:before {
    content: "\201C";
    content: open-quote; }
  q q:after {
    content: "\201D";
    content: close-quote; }

blockquote {
  quotes: "\\201C " "\\201D "; }
  blockquote p:before {
    content: "\\201C ";
    content: open-quote; }
  blockquote p:after {
    content: "";
    content: no-close-quote; }
  blockquote p:last-of-type:after {
    content: "\\201D ";
    content: close-quote; }
  blockquote q:before {
    content: "\2018";
    content: open-quote; }
  blockquote q:after {
    content: "\2019";
    content: close-quote; }

/**
 *
   <blockquote>
       <p>Insanity: doing the same thing over and over again and expecting
       different results.</p>
       <b class=source>Albert Einstein</b>
   </blockquote>
 *
 */
blockquote {
  /**
     * .4em is roughly equal to the width of the opening “ that we wish to hang.
     */
  text-indent: -0.41em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

.source {
  display: block;
  text-indent: 0; }
  .source:before {
    content: "\2014"; }

/*------------------------------------*    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto; }

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit; }

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
     * Override this setting in your theme stylesheet
     */
  opacity: 0.75;
  filter: alpha(opacity=75); }

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code don’t wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0; }

.line-numbers code {
  white-space: pre;
  /* [4] */ }

/*------------------------------------*    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%; }

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width],
img[height] {
  max-width: none; }

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px; }

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px; }

.img--left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px; }

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto; }

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 100px; }

.img--medium {
  height: 200px; }

.img--tall {
  height: 300px; }

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block; }

/*------------------------------------*    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal; }

/*------------------------------------*    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%; }

th,
td {
  padding: 5px;
  text-align: left; }
  @media screen and (min-width: 480px) {
    th,
    td {
      padding: 10px; } }

/**
 * Cell alignments
 */
[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.numerical {
  text-align: right; }

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%; }

.t10 {
  width: 10%; }

.t12 {
  width: 12.5%; }

/* 1/8 */
.t15 {
  width: 15%; }

.t20 {
  width: 20%; }

.t25 {
  width: 25%; }

/* 1/4 */
.t30 {
  width: 30%; }

.t33 {
  width: 33.333%; }

/* 1/3 */
.t35 {
  width: 35%; }

.t37 {
  width: 37.5%; }

/* 3/8 */
.t40 {
  width: 40%; }

.t45 {
  width: 45%; }

.t50 {
  width: 50%; }

/* 1/2 */
.t55 {
  width: 55%; }

.t60 {
  width: 60%; }

.t62 {
  width: 62.5%; }

/* 5/8 */
.t65 {
  width: 65%; }

.t66 {
  width: 66.666%; }

/* 2/3 */
.t70 {
  width: 70%; }

.t75 {
  width: 75%; }

/* 3/4*/
.t80 {
  width: 80%; }

.t85 {
  width: 85%; }

.t87 {
  width: 87.5%; }

/* 7/8 */
.t90 {
  width: 90%; }

.t95 {
  width: 95%; }

/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid #8F99AB; }
  .table--bordered th:empty,
  .table--bordered td:empty {
    border: none; }

.table--bordered thead tr:last-child th {
  border-bottom-width: 2px; }

.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px; }

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */ }

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif; }

/*------------------------------------*    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 20px; }

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
.text-input,
textarea {
  /**
     * Style these via your theme stylesheet.
     */ }

/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields, .gform_fields {
  list-style: none;
  margin: 0; }

.form-fields > li:last-child, .gform_fields > li:last-child {
  margin-bottom: 0; }

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  display: block; }

/**
     * Extra help text in `label`s, e.g.:
     *
       <label>Card number <small class=additional>No spaces</small></label>
     *
     */
.additional {
  display: block;
  font-weight: normal; }

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list,
ul.gfield_radio,
ul.gfield_checkbox {
  list-style: none;
  margin: 0; }

/*
     * Labels in check-lists
     */
.check-label, .check-list label,
ul.gfield_radio label,
ul.gfield_checkbox label, .check-list .label,
ul.gfield_radio .label,
ul.gfield_checkbox .label {
  display: inline-block; }

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit; }

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden; }

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible; }

/**
 * Objects and abstractions
 */
/*------------------------------------*    $GRIDS
\*------------------------------------*/
/**
 * Fluid and nestable grid system, e.g.:
 *
   <div class="grid">

       <div class="grid__item  one-third">
           <p>One third grid</p>
       </div><!--

    --><div class="grid__item  two-thirds">
           <p>Two thirds grid</p>
       </div><!--

    --><div class="grid__item  one-half">
           <p>One half grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div>

   </div>
 *
 * Demo: jsfiddle.net/inuitcss/CLYUC
 *
 */
/**
 * Grid wrapper
 */
.grid {
  margin-left: -20px;
  list-style: none;
  margin-bottom: 0; }

/**
     * Very infrequently occuring grid wrappers as children of grid wrappers.
     */
.grid > .grid {
  margin-left: 0; }

/**
     * Grid
     */
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 20px;
  vertical-align: top; }

/*------------------------------------*    $NAV
\*------------------------------------*/
/**
 * Nav abstraction as per: csswizardry.com/2011/09/the-nav-abstraction
 * When used on an `ol` or `ul`, this class throws the list into horizontal mode
 * e.g.:
 *
   <ul class=nav>
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Vnph4
 *
 */
.nav {
  list-style: none;
  margin-left: 0; }
  .nav > li,
  .nav > 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; }

/**
 * `.nav--banner` extends `.nav` and centres the list, e.g.:
 *
   <ul class="nav  nav--banner">
       <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--banner {
  text-align: center; }

/**
 * Give nav links a big, blocky hit area. Extends `.nav`, e.g.:
 *
   <ul class="nav  nav--block">
       <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--block {
  line-height: 1;
  /**
     * Remove whitespace caused by `inline-block`.
     */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap; }
  .nav--block > li {
    letter-spacing: normal;
    word-spacing: normal; }
    .nav--block > li > a {
      padding: 10px; }

/**
 * Force a nav to occupy 100% of the available width of its parent. Extends
 * `.nav`, e.g.:
 *
   <ul class="nav  nav--fit">
       <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>
 *
 * Thanks to @pimpl for this idea!
 */
.nav--fit {
  display: table;
  width: 100%; }
  .nav--fit > li {
    display: table-cell; }
    .nav--fit > li > a {
      display: block; }

/**
 * Make a list of keywords. Extends `.nav`, e.g.:
 *
   `<ul class="nav  nav--keywords>`
 *
 */
.nav--keywords > li:after {
  content: "\002C" "\00A0"; }

.nav--keywords > li:last-child:after {
  display: none; }

/*------------------------------------*    $ISLAND
\*------------------------------------*/
/**
 * Simple, boxed off content, as per: csswizardry.com/2011/10/the-island-object
 * E.g.:
 *
   <div class=island>
       I am boxed off.
   </div>
 *
 * Demo: jsfiddle.net/inuitcss/u8pV3
 *
 */
.island,
.islet {
  display: block; }

.island {
  padding: 20px; }

.island > :last-child,
.islet > :last-child {
  margin-bottom: 0; }

/**
 * Just like `.island`, only smaller.
 */
.islet {
  padding: 10px; }

/*------------------------------------*    $SPRITE
\*------------------------------------*/
/**
 * Giving an element a class of `.sprite` will throw it into ‘sprite’ mode and apply
 * a background image e.g.:
 *
   <a class="sprite  sprite--question-mark">More info&hellip;</a>
 *
 * or
 *
   <a href=#><i class="sprite  sprite--question-mark"></i> Help and FAQ</a>
 *
 * Giving an element a class of `.icon` will throw it into ‘icon’ mode and will
 * not add a background, but should be used for icon fonts and is populated
 * through a `data-icon` attribute and the `:after` pseudo-element, e.g.:
 *
   <a href=#><i class=icon data-icon="&#xF000;"></i> View your favourites</a>
 *
 * Where ‘&#xF000;’ might map to a star in your particular icon font.
 *
 * These all require extension in your theme stylesheet, e.g. in your own CSS:
 *
   .sprite{
       background-image:url(path/to/your/sprite.png);
   }
   .sprite--link{ background-position:0   0  ; }
   .sprite--star{ background-position:0 -16px; }
 *
 * Demo: jsfiddle.net/inuitcss/6TKuS
 *
 */
.sprite, .ginput_card_security_code_icon,
.gform_card_icon,
.icon {
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  zoom: 1;
  /**
     * So using `.icon` on certain elements doesn’t make a visual difference.
     */
  font-style: normal;
  font-weight: normal;
  /**
     * So icons added using `.icon` sit in the centre of the element.
     */
  text-align: center; }

.sprite, .ginput_card_security_code_icon,
.gform_card_icon {
  /**
     * The typical size of most icons. Override in your theme stylesheet.
     */
  width: 16px;
  height: 16px;
  top: -1px;
  /*
     * H5BP method image replacement:
     * github.com/h5bp/html5-boilerplate/commit/adecc5da035d6d76b77e3fa95c6abde841073da2
     */
  overflow: hidden;
  *text-indent: -9999px; }
  .sprite:before, .ginput_card_security_code_icon:before,
  .gform_card_icon:before {
    content: "";
    display: block;
    width: 0;
    height: 100%; }

/**
 * Set up icon font
 */
.icon {
  font-size: 16px;
  /**
     * Place the icon in a box the exact same dimensions as the icon itself.
     */
  width: 1em;
  height: 1em; }
  .icon:before {
    content: attr(data-icon); }

/**
 * Icon size modifiers.
 */
.icon--large {
  font-size: 32px; }

.icon--huge {
  font-size: 64px; }

.icon--natural {
  font-size: inherit; }

/*------------------------------------*    $BEAUTONS.CSS
\*------------------------------------*/
/**
 * beautons is a beautifully simple button toolkit.
 *
 * LICENSE
 * 
 * Copyright 2013 Harry Roberts
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
/*!*
 * 
 * @csswizardry -- csswizardry.com/beautons
 * 
 */
/*------------------------------------*    $BASE
\*------------------------------------*/
/**
 * Base button styles.
 *
 * 1. Allow us to better style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Stop buttons wrapping and looking broken.
 * 4. Make buttons inherit font styles.
 * 5. Force all elements using beautons to appear clickable.
 * 6. Normalise box model styles.
 * 7. If the button’s text is 1em, and the button is (3 * font-size) tall, then
 *    there is 1em of space above and below that text. We therefore apply 1em
 *    of space to the left and right, as padding, to keep consistent spacing.
 * 8. Basic cosmetics for default buttons. Change or override at will.
 * 9. Don’t allow buttons to have underlines; it kinda ruins the illusion.
 */
.btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 100%;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: none;
  /* [6] */
  margin: 0;
  /* [6] */
  padding-top: 0;
  /* [6] */
  padding-bottom: 0;
  /* [6] */
  line-height: 3;
  /* [7] */
  padding-right: 1em;
  /* [7] */
  padding-left: 1em;
  /* [7] */
  border-radius: 4px;
  /* [8] */ }

.btn, .btn:hover {
  text-decoration: none;
  /* [9] */ }

.btn:active, .btn:focus {
  outline: none; }

/*------------------------------------*    $SIZES
\*------------------------------------*/
/**
 * Button size modifiers.
 *
 * These all follow the same sizing rules as above; text is 1em, space around it
 * remains uniform.
 */
.btn--small {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 2; }

.btn--large {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 4; }

.btn--huge {
  padding-right: 2em;
  padding-left: 2em;
  line-height: 5; }

/**
 * These buttons will fill the entirety of their container.
 *
 * 1. Remove padding so that widths and paddings don’t conflict.
 */
.btn--full {
  width: 100%;
  padding-right: 0;
  /* [1] */
  padding-left: 0;
  /* [1] */
  text-align: center; }

/*------------------------------------*    $FONT-SIZES
\*------------------------------------*/
/**
 * Button font-size modifiers.
 */
.btn--alpha {
  font-size: 3rem; }

.btn--beta {
  font-size: 2rem; }

.btn--gamma {
  font-size: 1rem; }

/**
 * Make the button inherit sizing from its parent.
 */
.btn--natural {
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.5em;
  padding-left: 0.5em; }

/*------------------------------------*    $FUNCTIONS
\*------------------------------------*/
/**
 * Button function modifiers.
 */
/**
 * Positive actions; e.g. sign in, purchase, submit, etc.
 */
.btn--positive {
  background-color: #4A993E;
  color: #fff; }

/**
 * Negative actions; e.g. close account, delete photo, remove friend, etc.
 */
.btn--negative {
  background-color: #b33630;
  color: #fff; }

/**
 * Inactive, disabled buttons.
 * 
 * 1. Make the button look like normal text when hovered.
 */
.btn--inactive,
.btn--inactive:hover,
.btn--inactive:active,
.btn--inactive:focus {
  background-color: #ddd;
  color: #777;
  cursor: text;
  /* [1] */ }

/*------------------------------------*    $STYLES
\*------------------------------------*/
/**
 * Button style modifiers.
 *
 * 1. Use an overly-large number to ensure completely rounded, pill-like ends.
 */
.btn--soft {
  border-radius: 200px;
  /* [1] */ }

.btn--hard {
  border-radius: 0; }

/*------------------------------------*    $LOZENGES
\*------------------------------------*/
/**
 * Create pill- and lozenge-like runs of text, e.g.:
 *
   <p>This <span class=pill>here</span> is a pill!</p>
 *
   <p>This <span class=loz>here</span> is also a lozenge!</p>
 *
 * Pills have fully rounded ends, lozenges have only their corners rounded.
 *
 * Demo: jsfiddle.net/inuitcss/N3pGm
 *
 */
.pill, .loz {
  display: inline-block;
  /**
     * These numbers set in ems mean that, at its narrowest, a lozenge will be
     * the same width as the `line-height` set on the `html` element.
     * This allows us to use the `.loz` in almost any `font-size` we wish.
     */
  min-width: 1.15556em;
  padding-right: 0.28889em;
  padding-left: 0.28889em;
  /* =1.50em */
  text-align: center;
  background-color: #8F99AB;
  color: #fff;
  /* Override this color in your theme stylesheet */
  /**
     * Normally we’d use border-radius:100%; but instead here we just use an
     * overly large number; `border-radius:100%;` would create an oval on
     * non-square elements whereas we just want to round the ends of an element.
     */
  border-radius: 100px; }

.loz {
  border-radius: 4px; }

/*------------------------------------*    $RULES
\*------------------------------------*/
/**
 * Horizontal rules, extend `hr`.
 *
 * Demo: jsfiddle.net/inuitcss/L6GuZ
 *
 */
.rule {
  color: #8F99AB;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin-bottom: 19px;
  margin-bottom: 1.26667rem; }

/**
 * Dotted rules
 */
.rule--dotted {
  border-bottom-style: dotted; }

/**
 * Dashed rules
 */
.rule--dashed {
  border-bottom-style: dashed; }

/**
 * Ornamental rules. Places a § over the rule.
 */
.rule--ornament {
  position: relative;
  /**
    * Pass in an arbitrary ornament though a data attribute, e.g.:
    *
      <hr class="rule  rule--ornament" data-ornament="!">
    *
    */ }
  .rule--ornament:after {
    content: "\00A7";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    line-height: 0;
    text-align: center; }
  .rule--ornament[data-ornament]:after {
    content: attr(data-ornament); }

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
    * Whole
    */
.one-whole {
  width: 100%; }

/**
    * Halves
    */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
    * Thirds
    */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
    * Quarters
    */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
    * Fifths
    */
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
    * Sixths
    */
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
    * Eighths
    */
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
    * Tenths
    */
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
    * Twelfths
    */
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * If you have set `$responsive` to ‘true’ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint you’d like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ‘desktop’ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ‘tablet’ sizes, and goes full width
 * at ‘mobile’ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
@media only screen and (max-width: 588px) {
  /**
    * Whole
    */
  .palm-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .palm-one-third, .palm-two-sixths, .palm-four-twelfths {
    width: 33.333%; }
  .palm-two-thirds, .palm-four-sixths, .palm-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths {
    width: 25%; }
  .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths {
    width: 75%; }
  /**
    * Fifths
    */
  .palm-one-fifth, .palm-two-tenths {
    width: 20%; }
  .palm-two-fifths, .palm-four-tenths {
    width: 40%; }
  .palm-three-fifths, .palm-six-tenths {
    width: 60%; }
  .palm-four-fifths, .palm-eight-tenths {
    width: 80%; }
  /**
    * Sixths
    */
  .palm-one-sixth, .palm-two-twelfths {
    width: 16.666%; }
  .palm-five-sixths, .palm-ten-twelfths {
    width: 83.333%; }
  /**
    * Eighths
    */
  .palm-one-eighth {
    width: 12.5%; }
  .palm-three-eighths {
    width: 37.5%; }
  .palm-five-eighths {
    width: 62.5%; }
  .palm-seven-eighths {
    width: 87.5%; }
  /**
    * Tenths
    */
  .palm-one-tenth {
    width: 10%; }
  .palm-three-tenths {
    width: 30%; }
  .palm-seven-tenths {
    width: 70%; }
  .palm-nine-tenths {
    width: 90%; }
  /**
    * Twelfths
    */
  .palm-one-twelfth {
    width: 8.333%; }
  .palm-five-twelfths {
    width: 41.666%; }
  .palm-seven-twelfths {
    width: 58.333%; }
  .palm-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  /**
    * Whole
    */
  .lap-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .lap-one-third, .lap-two-sixths, .lap-four-twelfths {
    width: 33.333%; }
  .lap-two-thirds, .lap-four-sixths, .lap-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths {
    width: 25%; }
  .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths {
    width: 75%; }
  /**
    * Fifths
    */
  .lap-one-fifth, .lap-two-tenths {
    width: 20%; }
  .lap-two-fifths, .lap-four-tenths {
    width: 40%; }
  .lap-three-fifths, .lap-six-tenths {
    width: 60%; }
  .lap-four-fifths, .lap-eight-tenths {
    width: 80%; }
  /**
    * Sixths
    */
  .lap-one-sixth, .lap-two-twelfths {
    width: 16.666%; }
  .lap-five-sixths, .lap-ten-twelfths {
    width: 83.333%; }
  /**
    * Eighths
    */
  .lap-one-eighth {
    width: 12.5%; }
  .lap-three-eighths {
    width: 37.5%; }
  .lap-five-eighths {
    width: 62.5%; }
  .lap-seven-eighths {
    width: 87.5%; }
  /**
    * Tenths
    */
  .lap-one-tenth {
    width: 10%; }
  .lap-three-tenths {
    width: 30%; }
  .lap-seven-tenths {
    width: 70%; }
  .lap-nine-tenths {
    width: 90%; }
  /**
    * Twelfths
    */
  .lap-one-twelfth {
    width: 8.333%; }
  .lap-five-twelfths {
    width: 41.666%; }
  .lap-seven-twelfths {
    width: 58.333%; }
  .lap-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 589px) {
  /**
    * Whole
    */
  .lap-and-up-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .lap-and-up-one-half, .lap-and-up-two-quarters, .lap-and-up-three-sixths, .lap-and-up-four-eighths, .lap-and-up-five-tenths, .lap-and-up-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .lap-and-up-one-third, .lap-and-up-two-sixths, .lap-and-up-four-twelfths {
    width: 33.333%; }
  .lap-and-up-two-thirds, .lap-and-up-four-sixths, .lap-and-up-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .lap-and-up-one-quarter, .lap-and-up-two-eighths, .lap-and-up-three-twelfths {
    width: 25%; }
  .lap-and-up-three-quarters, .lap-and-up-six-eighths, .lap-and-up-nine-twelfths {
    width: 75%; }
  /**
    * Fifths
    */
  .lap-and-up-one-fifth, .lap-and-up-two-tenths {
    width: 20%; }
  .lap-and-up-two-fifths, .lap-and-up-four-tenths {
    width: 40%; }
  .lap-and-up-three-fifths, .lap-and-up-six-tenths {
    width: 60%; }
  .lap-and-up-four-fifths, .lap-and-up-eight-tenths {
    width: 80%; }
  /**
    * Sixths
    */
  .lap-and-up-one-sixth, .lap-and-up-two-twelfths {
    width: 16.666%; }
  .lap-and-up-five-sixths, .lap-and-up-ten-twelfths {
    width: 83.333%; }
  /**
    * Eighths
    */
  .lap-and-up-one-eighth {
    width: 12.5%; }
  .lap-and-up-three-eighths {
    width: 37.5%; }
  .lap-and-up-five-eighths {
    width: 62.5%; }
  .lap-and-up-seven-eighths {
    width: 87.5%; }
  /**
    * Tenths
    */
  .lap-and-up-one-tenth {
    width: 10%; }
  .lap-and-up-three-tenths {
    width: 30%; }
  .lap-and-up-seven-tenths {
    width: 70%; }
  .lap-and-up-nine-tenths {
    width: 90%; }
  /**
    * Twelfths
    */
  .lap-and-up-one-twelfth {
    width: 8.333%; }
  .lap-and-up-five-twelfths {
    width: 41.666%; }
  .lap-and-up-seven-twelfths {
    width: 58.333%; }
  .lap-and-up-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (max-width: 798px) {
  /**
    * Whole
    */
  .portable-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .portable-one-third, .portable-two-sixths, .portable-four-twelfths {
    width: 33.333%; }
  .portable-two-thirds, .portable-four-sixths, .portable-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths {
    width: 25%; }
  .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths {
    width: 75%; }
  /**
    * Fifths
    */
  .portable-one-fifth, .portable-two-tenths {
    width: 20%; }
  .portable-two-fifths, .portable-four-tenths {
    width: 40%; }
  .portable-three-fifths, .portable-six-tenths {
    width: 60%; }
  .portable-four-fifths, .portable-eight-tenths {
    width: 80%; }
  /**
    * Sixths
    */
  .portable-one-sixth, .portable-two-twelfths {
    width: 16.666%; }
  .portable-five-sixths, .portable-ten-twelfths {
    width: 83.333%; }
  /**
    * Eighths
    */
  .portable-one-eighth {
    width: 12.5%; }
  .portable-three-eighths {
    width: 37.5%; }
  .portable-five-eighths {
    width: 62.5%; }
  .portable-seven-eighths {
    width: 87.5%; }
  /**
    * Tenths
    */
  .portable-one-tenth {
    width: 10%; }
  .portable-three-tenths {
    width: 30%; }
  .portable-seven-tenths {
    width: 70%; }
  .portable-nine-tenths {
    width: 90%; }
  /**
    * Twelfths
    */
  .portable-one-twelfth {
    width: 8.333%; }
  .portable-five-twelfths {
    width: 41.666%; }
  .portable-seven-twelfths {
    width: 58.333%; }
  .portable-eleven-twelfths {
    width: 91.666%; } }

@media only screen and (min-width: 799px) {
  /**
    * Whole
    */
  .desk-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .desk-one-third, .desk-two-sixths, .desk-four-twelfths {
    width: 33.333%; }
  .desk-two-thirds, .desk-four-sixths, .desk-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths {
    width: 25%; }
  .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths {
    width: 75%; }
  /**
    * Fifths
    */
  .desk-one-fifth, .desk-two-tenths {
    width: 20%; }
  .desk-two-fifths, .desk-four-tenths {
    width: 40%; }
  .desk-three-fifths, .desk-six-tenths {
    width: 60%; }
  .desk-four-fifths, .desk-eight-tenths {
    width: 80%; }
  /**
    * Sixths
    */
  .desk-one-sixth, .desk-two-twelfths {
    width: 16.666%; }
  .desk-five-sixths, .desk-ten-twelfths {
    width: 83.333%; }
  /**
    * Eighths
    */
  .desk-one-eighth {
    width: 12.5%; }
  .desk-three-eighths {
    width: 37.5%; }
  .desk-five-eighths {
    width: 62.5%; }
  .desk-seven-eighths {
    width: 87.5%; }
  /**
    * Tenths
    */
  .desk-one-tenth {
    width: 10%; }
  .desk-three-tenths {
    width: 30%; }
  .desk-seven-tenths {
    width: 70%; }
  .desk-nine-tenths {
    width: 90%; }
  /**
    * Twelfths
    */
  .desk-one-twelfth {
    width: 8.333%; }
  .desk-five-twelfths {
    width: 41.666%; }
  .desk-seven-twelfths {
    width: 58.333%; }
  .desk-eleven-twelfths {
    width: 91.666%; } }

/**
 * If you have set the additional `$responsive-extra` variable to ‘true’ in
 * `_vars.scss` then you now have access to the following class available to
 * accomodate much larger screen resolutions.
 */
@media only screen and (min-width: 1180px) {
  /**
    * Whole
    */
  .desk-wide-one-whole {
    width: 100%; }
  /**
    * 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%; }
  /**
    * Thirds
    */
  .desk-wide-one-third, .desk-wide-two-sixths, .desk-wide-four-twelfths {
    width: 33.333%; }
  .desk-wide-two-thirds, .desk-wide-four-sixths, .desk-wide-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .desk-wide-one-quarter, .desk-wide-two-eighths, .desk-wide-three-twelfths {
    width: 25%; }
  .desk-wide-three-quarters, .desk-wide-six-eighths, .desk-wide-nine-twelfths {
    width: 75%; }
  /**
    * Fifths
    */
  .desk-wide-one-fifth, .desk-wide-two-tenths {
    width: 20%; }
  .desk-wide-two-fifths, .desk-wide-four-tenths {
    width: 40%; }
  .desk-wide-three-fifths, .desk-wide-six-tenths {
    width: 60%; }
  .desk-wide-four-fifths, .desk-wide-eight-tenths {
    width: 80%; }
  /**
    * Sixths
    */
  .desk-wide-one-sixth, .desk-wide-two-twelfths {
    width: 16.666%; }
  .desk-wide-five-sixths, .desk-wide-ten-twelfths {
    width: 83.333%; }
  /**
    * Eighths
    */
  .desk-wide-one-eighth {
    width: 12.5%; }
  .desk-wide-three-eighths {
    width: 37.5%; }
  .desk-wide-five-eighths {
    width: 62.5%; }
  .desk-wide-seven-eighths {
    width: 87.5%; }
  /**
    * Tenths
    */
  .desk-wide-one-tenth {
    width: 10%; }
  .desk-wide-three-tenths {
    width: 30%; }
  .desk-wide-seven-tenths {
    width: 70%; }
  .desk-wide-nine-tenths {
    width: 90%; }
  /**
    * Twelfths
    */
  .desk-wide-one-twelfth {
    width: 8.333%; }
  .desk-wide-five-twelfths {
    width: 41.666%; }
  .desk-wide-seven-twelfths {
    width: 58.333%; }
  .desk-wide-eleven-twelfths {
    width: 91.666%; } }

/* endif */
/*------------------------------------*    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif!important;
  color: #f47c00!important; }

.brand-face {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif!important; }

.brand-color,
.brand-color {
  color: #f47c00!important; }

/*------------------------------------*    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn’t already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

/**
 * Text alignment
 */
.text--left {
  text-align: left  !important; }

.text--center {
  text-align: center !important; }

.text--right {
  text-align: right !important; }

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

/**
 * Add/remove margins
 */
.push {
  margin: 20px !important; }

.push--top {
  margin-top: 20px !important; }

.push--right {
  margin-right: 20px !important; }

.push--bottom {
  margin-bottom: 20px !important; }

.push--left {
  margin-left: 20px !important; }

.push--ends {
  margin-top: 20px !important;
  margin-bottom: 20px !important; }

.push--sides {
  margin-right: 20px !important;
  margin-left: 20px !important; }

.push-half {
  margin: 10px !important; }

.push-half--top {
  margin-top: 10px !important; }

.push-half--right {
  margin-right: 10px !important; }

.push-half--bottom {
  margin-bottom: 10px !important; }

.push-half--left {
  margin-left: 10px !important; }

.push-half--ends {
  margin-top: 10px !important;
  margin-bottom: 10px !important; }

.push-half--sides {
  margin-right: 10px !important;
  margin-left: 10px !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/**
 * Add/remove paddings
 */
.soft {
  padding: 20px !important; }

.soft--top {
  padding-top: 20px !important; }

.soft--right {
  padding-right: 20px !important; }

.soft--bottom {
  padding-bottom: 20px !important; }

.soft--left {
  padding-left: 20px !important; }

.soft--ends {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.soft--sides {
  padding-right: 20px !important;
  padding-left: 20px !important; }

.soft-half {
  padding: 10px !important; }

.soft-half--top {
  padding-top: 10px !important; }

.soft-half--right {
  padding-right: 10px !important; }

.soft-half--bottom {
  padding-bottom: 10px !important; }

.soft-half--left {
  padding-left: 10px !important; }

.soft-half--ends {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.soft-half--sides {
  padding-right: 10px !important;
  padding-left: 10px !important; }

.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -20px !important;
  margin-left: -20px !important; }
  .islet .full-bleed {
    margin-right: -10px !important;
    margin-left: -10px !important; }

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important; }

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important; }

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important; }

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: " " "»" !important; }

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important; }

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

@media only screen and (max-width: 588px) {
  .accessibility--palm,
  .visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .accessibility--lap,
  .visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 589px) {
  .accessibility--lap-and-up,
  .visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (max-width: 798px) {
  .accessibility--portable,
  .visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 799px) {
  .accessibility--desk,
  .visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (min-width: 1180px) {
  .accessibility--desk-wide,
  .visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

/* endif */
/**
 * She’s all yours, cap’n... Begin importing your stuff here.
 */
/**
 * Place any mixins that sit on top of revtrac mixins
 * If it would benefit any of the child themes, add it to umi-base instead
 */
.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0; }

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none; }

.r-tabs .r-tabs-panel {
  display: none; }

.r-tabs .r-tabs-accordion-title {
  display: none; }

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block; }

/* Accordion responsive breakpoint */
@media only screen and (max-width: 798px) {
  .r-tabs .r-tabs-nav {
    display: none; }
  .r-tabs .r-tabs-accordion-title {
    display: block; } }

/**
 * Swiper 4.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 1, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-invisible-blank-slide {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height; }

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.swiper-wrapper,
.swiper-slide {
  -ms-flex-align: center;
  align-items: center;
  /* add this will all relevant prefixes */ }

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("../fonts/lightcase.eot?55356177");
  src: url("../fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("../fonts/lightcase.woff?55356177") format("woff"), url("../fonts/lightcase.ttf?55356177") format("truetype"), url("../fonts/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal; }

/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800'; }

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801'; }

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e802'; }

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803'; }

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804'; }

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805'; }

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */

@keyframes lightcase-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important; } }

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden; } }

@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333; } }

/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -o-box-shadow: none;
  box-shadow: none; }

@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important; } }

/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -o-box-sizing: border-box;
  box-sizing: border-box; }

@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px; }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important; }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important; } }

@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch; } }

@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75; } }

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important; }

@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important; } }

@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -o-box-sizing: border-box;
    box-sizing: border-box; } }

@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa; } }

@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333; } }

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa; }

@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0; } }

@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0; } }

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open {
  overflow: hidden; }

/*
.lightcase-open body {
  overflow: hidden;
}
*/
/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%; }

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px; }

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis; }

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa; }

@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333; } }

/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa; }

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa; }

@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px; }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static; } }

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  animation: lightcase-spin 0.5s infinite linear; }

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  transition: color, opacity, ease-in-out 0.25s; }

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px; }

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer; }

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  transition: color, opacity, ease-in-out 0.25s; }

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px; }

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white; }

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none; }

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none; }

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px; }

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px; }

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em; }

@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0; } }

@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px; } }

@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em; }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1; } }

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333; }

@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important; } }

@font-face {
  font-family: 'rsc-icons';
  src: url("../../revtrac/fonts/rsc-icons.woff2?ad5def") format("woff2"), url("../../revtrac/fonts/rsc-icons.ttf?ad5def") format("truetype"), url("../../revtrac/fonts/rsc-icons.woff?ad5def") format("woff"), url("../../revtrac/fonts/rsc-icons.svg?ad5def#rsc-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

.ico {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'rsc-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ico--plus:before {
  content: "\e911"; }

.ico--chevron-down:before {
  content: "\e900"; }

.ico--chevron-left:before {
  content: "\e901"; }

.ico--chevron-right:before {
  content: "\e902"; }

.ico--chevron-up:before {
  content: "\e903"; }

.ico--search:before {
  content: "\e904"; }

.ico--circle:before {
  content: "\e905"; }

.ico--loader:before {
  content: "\e906"; }

.ico--close:before {
  content: "\e907"; }

.ico--info:before {
  content: "\e908"; }

.ico--twitter:before {
  content: "\e909"; }

.ico--facebook:before {
  content: "\e90a"; }

.ico--linkedin:before {
  content: "\e912"; }

.ico--google:before {
  content: "\e90b"; }

.ico--menu:before {
  content: "\e90c"; }

.ico--download:before {
  content: "\e90d"; }

.ico--list:before {
  content: "\e90e"; }

.ico--pdf:before {
  content: "\e90f"; }

.ico--play:before {
  content: "\e910"; }

#image-overlay-primary_x5F__x5F_front,
#image-overlay-primary-small_x5F__x5F_front,
#image-overlay-secondary_x5F__x5F_back,
#image-overlay-secondary-small_x5F__x5F_front,
#image-overlay-tertiary_x5F__x5F_back,
#image-overlay-tertiary-small_x5F__x5F_front {
  mix-blend-mode: multiply; }

@media only screen and (min-width: 799px) {
  #image-overlay-primary-small,
  #image-overlay-secondary-small,
  #image-overlay-tertiary-small {
    display: none; } }

@media only screen and (max-width: 798px) {
  #image-overlay-primary,
  #image-overlay-secondary,
  #image-overlay-tertiary {
    display: none; } }

a.sprite, a.ginput_card_security_code_icon,
a.gform_card_icon,
a.icon,
button.sprite,
button.ginput_card_security_code_icon,
button.gform_card_icon,
button.icon {
  padding: 0;
  border: none;
  background-color: transparent !important;
  text-indent: -9999px;
  outline: none; }
  a.sprite:hover, a.ginput_card_security_code_icon:hover,
  a.gform_card_icon:hover,
  a.icon:hover,
  button.sprite:hover,
  button.ginput_card_security_code_icon:hover,
  button.gform_card_icon:hover,
  button.icon:hover {
    background-color: transparent !important; }
  a.sprite:focus, a.ginput_card_security_code_icon:focus,
  a.gform_card_icon:focus, a.sprite:active, a.ginput_card_security_code_icon:active,
  a.gform_card_icon:active,
  a.icon:focus,
  a.icon:active,
  button.sprite:focus,
  button.ginput_card_security_code_icon:focus,
  button.gform_card_icon:focus,
  button.sprite:active,
  button.ginput_card_security_code_icon:active,
  button.gform_card_icon:active,
  button.icon:focus,
  button.icon:active {
    outline: none; }

.sprite, .ginput_card_security_code_icon,
.gform_card_icon,
.icon {
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%; }

.sprite--logo-revtrac {
  background-image: url(../../revtrac/images/revtrac-logo.svg);
  width: 190px;
  height: 51px; }

.sprite--logo-revtrac-with-tagline,
.sprite--logo-full {
  background-image: url(../../revtrac/images/revtrac-logo-with-tagline.svg);
  width: 190px;
  height: 51px; }

.sprite--logo-revtrac-insights {
  background-image: url(../../revtrac/images/revtrac-insights-logo.svg);
  width: 181px;
  height: 48px; }

.sprite--logo-revtrac-platinum {
  background-image: url(../../revtrac/images/revtrac-platinum-logo.svg);
  width: 183px;
  height: 48px; }

.sprite--logo-revtrac-stacked {
  background-image: url(../../revtrac/images/revtrac-logo-stacked.svg);
  width: 89px;
  height: 68px; }

.sprite--logo-symbol {
  background-image: url(../../revtrac/images/revtrac-logo-symbol.svg);
  width: 79px;
  height: 51px; }

.grid {
  font-size: 0;
  line-height: 0; }
  .grid:after {
    content: "";
    display: table;
    clear: both; }
  .grid.grid--reverse > .grid__item {
    float: right; }

.grid__item {
  font-size: 15px;
  line-height: 26px; }
  .grid__item:after {
    content: "";
    display: table;
    clear: both; }

.flex-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: -20px; }
  .flex-grid.flex-grid--reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-grid.flex-grid--hard {
    margin-left: 0; }
    .flex-grid.flex-grid--hard > .flex-grid__item {
      padding-left: 0; }
  .flex-grid.flex-grid--top {
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-grid.flex-grid--center {
    -ms-flex-align: center;
    align-items: center; }
  .flex-grid.flex-grid--bottom {
    -ms-flex-align: end;
    align-items: flex-end; }

.flex-grid__item {
  padding-left: 20px;
  max-width: 100%; }
  .flex-grid__item.flex-grid__item--top {
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-grid__item.flex-grid__item--center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center; }
  .flex-grid__item.flex-grid__item--bottom {
    -ms-flex-item-align: end;
    align-self: flex-end; }

@media only screen and (min-width: 799px) {
  .desk-hide {
    display: none !important; }
  .desk-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .desk-soft--sides {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .desk-text--left {
    text-align: left !important; }
  .desk-text--right {
    text-align: right !important; }
  .desk-text--center {
    text-align: center !important; }
  .desk-float--left {
    float: left !important; }
  .desk-float--right {
    float: right !important; }
  .desk-float-none {
    float: none !important; }
  .desk-hard--left {
    padding-left: 0 !important; }
  .desk-hard--right {
    padding-right: 0 !important; }
  .desk-pull--bottom {
    margin-bottom: 0 !important; }
  .desk-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.desk-one-whole {
    float: none; } }

@media only screen and (min-width: 589px) {
  .lap-and-up-hide {
    display: none !important; }
  .lap-and-up-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .lap-and-up-soft--sides {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .lap-and-up-text--left {
    text-align: left !important; }
  .lap-and-up-text--right {
    text-align: right !important; }
  .lap-and-up-text--center {
    text-align: center !important; }
  .lap-and-up-float--left {
    float: left !important; }
  .lap-and-up-float--right {
    float: right !important; }
  .lap-and-up-float-none {
    float: none !important; }
  .lap-and-up-hard--left {
    padding-left: 0 !important; }
  .lap-and-up-hard--right {
    padding-right: 0 !important; }
  .lap-and-up-pull--bottom {
    margin-bottom: 0 !important; }
  .lap-and-up-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.lap-and-up-one-whole {
    float: none; } }

@media only screen and (max-width: 798px) {
  .portable-hide {
    display: none !important; }
  .portable-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .portable-soft--sides {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .portable-text--left {
    text-align: left !important; }
  .portable-text--right {
    text-align: right !important; }
  .portable-text--center {
    text-align: center !important; }
  .portable-float--left {
    float: left !important; }
  .portable-float--right {
    float: right !important; }
  .portable-float-none {
    float: none !important; }
  .portable-hard--left {
    padding-left: 0 !important; }
  .portable-hard--right {
    padding-right: 0 !important; }
  .portable-pull--bottom {
    margin-bottom: 0 !important; }
  .portable-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.portable-one-whole {
    float: none; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .lap-hide {
    display: none !important; }
  .lap-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .lap-soft--sides {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .lap-text--left {
    text-align: left !important; }
  .lap-text--right {
    text-align: right !important; }
  .lap-text--center {
    text-align: center !important; }
  .lap-float--left {
    float: left !important; }
  .lap-float--right {
    float: right !important; }
  .lap-float-none {
    float: none !important; }
  .lap-hard--left {
    padding-left: 0 !important; }
  .lap-hard--right {
    padding-right: 0 !important; }
  .lap-pull--bottom {
    margin-bottom: 0 !important; }
  .lap-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.lap-one-whole {
    float: none; }
  .grid__item {
    font-size: 14px; } }

@media only screen and (max-width: 588px) {
  .palm-hide {
    display: none !important; }
  .palm-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .palm-soft--sides {
    padding-right: 20px !important;
    padding-left: 20px !important; }
  .palm-text--left {
    text-align: left !important; }
  .palm-text--right {
    text-align: right !important; }
  .palm-text--center {
    text-align: center !important; }
  .palm-float--left {
    float: left !important; }
  .palm-float--right {
    float: right !important; }
  .palm-float-none {
    float: none !important; }
  .palm-hard--left {
    padding-left: 0 !important; }
  .palm-hard--right {
    padding-right: 0 !important; }
  .palm-pull--bottom {
    margin-bottom: 0 !important; }
  .palm-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.palm-one-whole {
    float: none; }
  .grid__item {
    font-size: 12px; } }

html,
body {
  height: 100%; }

@media only screen and (max-width: 798px) {
  html.menu-open {
    overflow: hidden; } }

body {
  background-color: #fff; }

a:focus,
input[type=button]:focus,
input[type=submit]:focus,
button:focus {
  outline: none; }

main,
header,
footer,
article,
aside,
section {
  position: relative; }

pre {
  font-size: 10px;
  line-height: 1;
  border: 1px solid #8F99AB;
  padding: 20px; }

.nav,
.nav li {
  margin-bottom: 0; }
  .nav.ignore > a,
  .nav li.ignore > a {
    cursor: default;
    pointer-events: none; }

.wrap {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative; }
  .wrap:after {
    content: "";
    display: table;
    clear: both; }
  .wrap.wrap--wide {
    width: 1440px; }
  .wrap.wrap--full {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px; }
  .wrap.wrap--hard {
    padding-right: 0 !important;
    padding-left: 0 !important; }

.hr {
  font-size: 0;
  padding: 0;
  margin: 20px 0;
  line-height: 0;
  overflow: hidden;
  display: block;
  height: 0;
  border-top: 1px solid #E5EBEF; }

img {
  width: auto;
  height: auto; }
  img, img[height], img[width] {
    max-width: 100%; }
  img.full {
    width: 100%; }

.vh {
  height: 100vh; }

@media only screen and (min-width: 799px) and (max-width: 1180px) {
  .wrap:not(.wrap--hard) {
    padding-left: 40px;
    padding-right: 40px; } }

@media only screen and (max-width: 798px) {
  .wrap:not(.wrap--hard) {
    padding-left: 20px;
    padding-right: 20px; } }

@media only screen and (max-width: 588px) {
  * {
    -webkit-overflow-scrolling: touch; } }

.color-error {
  color: #F04E57 !important; }

.bg-error {
  background-color: #F04E57 !important; }

.border-top--error {
  border-top: 1px solid #F04E57 !important; }

.border-bottom--error {
  border-bottom: 1px solid #F04E57 !important; }

.color-success {
  color: #1E396B !important; }

.bg-success {
  background-color: #1E396B !important; }

.border-top--success {
  border-top: 1px solid #1E396B !important; }

.border-bottom--success {
  border-bottom: 1px solid #1E396B !important; }

.color-white {
  color: #fff !important; }

.bg-white {
  background-color: #fff !important; }

.border-top--white {
  border-top: 1px solid #fff !important; }

.border-bottom--white {
  border-bottom: 1px solid #fff !important; }

.color-black {
  color: #231f20 !important; }

.bg-black {
  background-color: #231f20 !important; }

.border-top--black {
  border-top: 1px solid #231f20 !important; }

.border-bottom--black {
  border-bottom: 1px solid #231f20 !important; }

.color-brand {
  color: #f47c00 !important; }

.bg-brand {
  background-color: #f47c00 !important; }

.border-top--brand {
  border-top: 1px solid #f47c00 !important; }

.border-bottom--brand {
  border-bottom: 1px solid #f47c00 !important; }

.color-primary {
  color: #f47c00 !important; }

.bg-primary {
  background-color: #f47c00 !important; }

.border-top--primary {
  border-top: 1px solid #f47c00 !important; }

.border-bottom--primary {
  border-bottom: 1px solid #f47c00 !important; }

.color-primary-light {
  color: #ff9528 !important; }

.bg-primary-light {
  background-color: #ff9528 !important; }

.border-top--primary-light {
  border-top: 1px solid #ff9528 !important; }

.border-bottom--primary-light {
  border-bottom: 1px solid #ff9528 !important; }

.color-primary-lightest {
  color: #fac5c6 !important; }

.bg-primary-lightest {
  background-color: #fac5c6 !important; }

.border-top--primary-lightest {
  border-top: 1px solid #fac5c6 !important; }

.border-bottom--primary-lightest {
  border-bottom: 1px solid #fac5c6 !important; }

.color-secondary {
  color: #1E396B !important; }

.bg-secondary {
  background-color: #1E396B !important; }

.border-top--secondary {
  border-top: 1px solid #1E396B !important; }

.border-bottom--secondary {
  border-bottom: 1px solid #1E396B !important; }

.color-secondary-light {
  color: #86A0C2 !important; }

.bg-secondary-light {
  background-color: #86A0C2 !important; }

.border-top--secondary-light {
  border-top: 1px solid #86A0C2 !important; }

.border-bottom--secondary-light {
  border-bottom: 1px solid #86A0C2 !important; }

.color-secondary-lightest {
  color: #a8bbd3 !important; }

.bg-secondary-lightest {
  background-color: #a8bbd3 !important; }

.border-top--secondary-lightest {
  border-top: 1px solid #a8bbd3 !important; }

.border-bottom--secondary-lightest {
  border-bottom: 1px solid #a8bbd3 !important; }

.color-tertiary {
  color: #8F99AB !important; }

.bg-tertiary {
  background-color: #8F99AB !important; }

.border-top--tertiary {
  border-top: 1px solid #8F99AB !important; }

.border-bottom--tertiary {
  border-bottom: 1px solid #8F99AB !important; }

.color-tertiary-light {
  color: #EEEFF1 !important; }

.bg-tertiary-light {
  background-color: #EEEFF1 !important; }

.border-top--tertiary-light {
  border-top: 1px solid #EEEFF1 !important; }

.border-bottom--tertiary-light {
  border-bottom: 1px solid #EEEFF1 !important; }

.color-tertiary-lightest {
  color: #FAFAFB !important; }

.bg-tertiary-lightest {
  background-color: #FAFAFB !important; }

.border-top--tertiary-lightest {
  border-top: 1px solid #FAFAFB !important; }

.border-bottom--tertiary-lightest {
  border-bottom: 1px solid #FAFAFB !important; }

.color-white {
  color: #fff !important; }

.bg-white {
  background-color: #fff !important; }

.border-top--white {
  border-top: 1px solid #fff !important; }

.border-bottom--white {
  border-bottom: 1px solid #fff !important; }

.bg-image-full {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #8F99AB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

::selection {
  background-color: #f47c00;
  color: #fff; }

a {
  text-decoration: none;
  transition: all 0.3s; }
  a, a:visited {
    color: #f47c00; }
  a:focus, a:active, a:hover {
    color: #c16200; }

/*
main a {
	&:not(.btn):not(.sprite):not(.ico):not(.loz) {
		@include link;
	}
}
*/
a.link {
  display: inline;
  position: relative; }
  a.link:after {
    content: "";
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 1px;
    display: block;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: -2px;
    right: 0;
    will-change: width, background-color;
    transition: width 0.3s, background-color 0.3s;
    transform: translateX(-50%);
    background-color: rgba(244, 124, 0, 0); }
  a.link:focus:after, a.link:active:after, a.link:hover:after {
    width: 100%;
    background-color: #f47c00; }

p,
ul,
ol,
dl,
blockquote,
table,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin-bottom: 20px; }

address {
  font-style: normal; }

blockquote {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: italic;
  quotes: none;
  text-indent: 0;
  font-size: 20px;
  color: #1E396B;
  border: 1px solid #E5EBEF;
  border-radius: 4px 4px 0 0;
  padding: 60px;
  box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.05);
  position: relative; }
  blockquote:after {
    content: "";
    font-size: 0;
    line-height: 0;
    width: calc(100% + 2px);
    height: 10px;
    background-color: #fafcfc;
    overflow: hidden;
    border: 1px solid #E5EBEF;
    border-radius: 0 0 4px 4px;
    position: absolute;
    bottom: -10px;
    left: -1px; }
  blockquote:not(:last-child) {
    margin-bottom: 40px; }

p:last-child,
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
ol:last-child, ul:last-child,
figure:last-child,
blockquote:last-child {
  margin-bottom: 0; }

h1.first-line, h2.first-line, h3.first-line, h4.first-line, h5.first-line, h6.first-line,
.h1.first-line, .h2.first-line, .h3.first-line, .h4.first-line, .h5.first-line, .h6.first-line {
  color: #f47c00; }
  h1.first-line:first-line, h2.first-line:first-line, h3.first-line:first-line, h4.first-line:first-line, h5.first-line:first-line, h6.first-line:first-line,
  .h1.first-line:first-line, .h2.first-line:first-line, .h3.first-line:first-line, .h4.first-line:first-line, .h5.first-line:first-line, .h6.first-line:first-line {
    color: #1E396B; }

p + figure,
p + p,
p + ol, p + ul,
p + h1, p + h2, p + h3, p + h4, p + h5, p + h6,
p + .h1, p + .h2, p + .h3, p + .h4, p + .h5, p + .h6,
h1 + figure,
h1 + p,
h1 + ol,
h1 + ul,
h1 + h1,
h1 + h2,
h1 + h3,
h1 + h4,
h1 + h5,
h1 + h6,
h1 + .h1,
h1 + .h2,
h1 + .h3,
h1 + .h4,
h1 + .h5,
h1 + .h6, h2 + figure,
h2 + p,
h2 + ol, h2 + ul,
h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6,
h2 + .h1, h2 + .h2, h2 + .h3, h2 + .h4, h2 + .h5, h2 + .h6, h3 + figure,
h3 + p,
h3 + ol, h3 + ul,
h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6,
h3 + .h1, h3 + .h2, h3 + .h3, h3 + .h4, h3 + .h5, h3 + .h6, h4 + figure,
h4 + p,
h4 + ol, h4 + ul,
h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6,
h4 + .h1, h4 + .h2, h4 + .h3, h4 + .h4, h4 + .h5, h4 + .h6, h5 + figure,
h5 + p,
h5 + ol, h5 + ul,
h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6,
h5 + .h1, h5 + .h2, h5 + .h3, h5 + .h4, h5 + .h5, h5 + .h6, h6 + figure,
h6 + p,
h6 + ol, h6 + ul,
h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6,
h6 + .h1, h6 + .h2, h6 + .h3, h6 + .h4, h6 + .h5, h6 + .h6,
.h1 + figure,
.h1 + p,
.h1 + ol,
.h1 + ul,
.h1 + h1,
.h1 + h2,
.h1 + h3,
.h1 + h4,
.h1 + h5,
.h1 + h6,
.h1 + .h1,
.h1 + .h2,
.h1 + .h3,
.h1 + .h4,
.h1 + .h5,
.h1 + .h6, .h2 + figure,
.h2 + p,
.h2 + ol, .h2 + ul,
.h2 + h1, .h2 + h2, .h2 + h3, .h2 + h4, .h2 + h5, .h2 + h6,
.h2 + .h1, .h2 + .h2, .h2 + .h3, .h2 + .h4, .h2 + .h5, .h2 + .h6, .h3 + figure,
.h3 + p,
.h3 + ol, .h3 + ul,
.h3 + h1, .h3 + h2, .h3 + h3, .h3 + h4, .h3 + h5, .h3 + h6,
.h3 + .h1, .h3 + .h2, .h3 + .h3, .h3 + .h4, .h3 + .h5, .h3 + .h6, .h4 + figure,
.h4 + p,
.h4 + ol, .h4 + ul,
.h4 + h1, .h4 + h2, .h4 + h3, .h4 + h4, .h4 + h5, .h4 + h6,
.h4 + .h1, .h4 + .h2, .h4 + .h3, .h4 + .h4, .h4 + .h5, .h4 + .h6, .h5 + figure,
.h5 + p,
.h5 + ol, .h5 + ul,
.h5 + h1, .h5 + h2, .h5 + h3, .h5 + h4, .h5 + h5, .h5 + h6,
.h5 + .h1, .h5 + .h2, .h5 + .h3, .h5 + .h4, .h5 + .h5, .h5 + .h6, .h6 + figure,
.h6 + p,
.h6 + ol, .h6 + ul,
.h6 + h1, .h6 + h2, .h6 + h3, .h6 + h4, .h6 + h5, .h6 + h6,
.h6 + .h1, .h6 + .h2, .h6 + .h3, .h6 + .h4, .h6 + .h5, .h6 + .h6 {
  padding-top: 10px; }

p + p {
  padding-top: 0; }

ol + p, ul + p {
  padding-top: 10px; }

.wistia_responsive_padding + figure,
.wistia_responsive_padding + ol, .wistia_responsive_padding + ul,
.wistia_responsive_padding + h1, .wistia_responsive_padding + h2, .wistia_responsive_padding + h3, .wistia_responsive_padding + h4, .wistia_responsive_padding + h5, .wistia_responsive_padding + h6,
.wistia_responsive_padding + .h1, .wistia_responsive_padding + .h2, .wistia_responsive_padding + .h3, .wistia_responsive_padding + .h4, .wistia_responsive_padding + .h5, .wistia_responsive_padding + .h6 {
  padding-top: 40px; }

.wistia_responsive_padding + p {
  padding-top: 20px; }

h1, h2, h3, h5, h6,
.h1, .h2, .h3, .h5, .h6 {
  color: #1E396B; }

h4,
.h4 {
  color: #86A0C2; }

h1, h2, h3, h6,
.h1, .h2, .h3, .h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1; }
  h1 i, h1 em, h2 i, h2 em, h3 i, h3 em, h6 i, h6 em,
  .h1 i,
  .h1 em, .h2 i, .h2 em, .h3 i, .h3 em, .h6 i, .h6 em {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    font-style: italic; }

h4, h5,
.h4, .h5 {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5; }
  h4 i, h4 em, h5 i, h5 em,
  .h4 i,
  .h4 em, .h5 i, .h5 em {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-style: italic; }
  h4 b, h4 strong, h5 b, h5 strong,
  .h4 b,
  .h4 strong, .h5 b, .h5 strong {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    font-style: normal; }
    h4 b i, h4 b em, h4 strong i, h4 strong em, h5 b i, h5 b em, h5 strong i, h5 strong em,
    .h4 b i,
    .h4 b em,
    .h4 strong i,
    .h4 strong em, .h5 b i, .h5 b em, .h5 strong i, .h5 strong em {
      font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: 700;
      font-style: italic; }

h1, .h1 {
  font-size: 50px; }

h2, .h2 {
  font-size: 40px; }

h3, .h3 {
  font-size: 30px; }

h4, .h4 {
  font-size: 25px; }

h5, .h5 {
  font-size: 17px; }

h6, .h6 {
  font-size: 16px; }

.font-bold {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 700;
  font-style: normal; }
  .font-bold i, .font-bold em {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    font-style: italic; }

.font-normal {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: normal; }
  .font-normal i, .font-normal em {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-style: italic; }
  .font-normal b, .font-normal strong {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    font-style: normal; }
    .font-normal b i, .font-normal b em, .font-normal strong i, .font-normal strong em {
      font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: 700;
      font-style: italic; }

.font-italic {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  font-style: italic; }
  .font-italic b, .font-italic strong {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    font-style: italic; }

ul.no-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px; }

ol.list-styled, ul.list-styled {
  display: block;
  width: 600px;
  max-width: 100%;
  list-style: none;
  margin-left: 0;
  text-align: left; }
  ol.list-styled li, ul.list-styled li {
    display: block;
    padding: 10px 0 10px 20px;
    position: relative; }
    ol.list-styled li:not(:last-child), ul.list-styled li:not(:last-child) {
      border-bottom: 1px solid #e5ebef; }
    ol.list-styled li:before, ul.list-styled li:before {
      color: #f47c00; }
    ol.list-styled li ul, ul.list-styled li ul {
      margin: 10px 0 -10px 6px; }
      ol.list-styled li ul > li:first-child, ul.list-styled li ul > li:first-child {
        border-top: 1px solid #e5ebef; }
      ol.list-styled li ul > li:before, ul.list-styled li ul > li:before {
        color: #1E396B; }

ol.list-styled,
ol.list-styled ul {
  counter-reset: li; }

ol.list-styled li {
  counter-increment: li;
  padding-left: 30px; }
  ol.list-styled li:before {
    content: counter(li);
    color: #1E396B;
    font-weight: 700;
    display: inline-block;
    width: 26px;
    margin-left: -26px; }
  ol.list-styled li ul li:before {
    content: counters(li, ".") " ";
    width: 40px; }

ul.list-styled {
  padding-left: 0; }
  ul.list-styled li {
    text-indent: -4px;
    padding-left: 34px; }
  ul.list-styled li:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'rsc-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e902";
    font-size: 10px;
    position: relative;
    left: -20px; }

table.table {
  border: 2px solid #8F99AB; }
  table.table th,
  table.table thead td {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 700;
    font-style: normal; }
  table.table th,
  table.table td {
    vertical-align: top; }
  table.table thead tr td,
  table.table thead tr th,
  table.table tbody tr:not(:last-child) td {
    border-bottom: 2px solid #8F99AB; }

table.table.table--reversed {
  border-color: #8F99AB;
  color: #fff; }
  table.table.table--reversed thead tr td,
  table.table.table--reversed thead tr th,
  table.table.table--reversed tbody tr:not(:last-child) td {
    border-color: #8F99AB; }

.uppercase {
  text-transform: uppercase; }

ul.no-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px; }

span.br,
i.br {
  display: block;
  width: 0; }

.loz {
  font-weight: 700;
  background-color: #8F99AB;
  color: #fff;
  font-size: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  vertical-align: middle; }

a.loz,
label.loz {
  transition: all 0.3s;
  color: #fff; }
  a.loz:hover, a.loz:focus,
  label.loz:hover,
  label.loz:focus {
    background-color: #1E396B;
    color: #fff; }

.island {
  background-color: #FAFAFB;
  border: 1px solid #EEEFF1;
  border-radius: 4px;
  padding: 40px; }
  .island.island--small {
    width: 620px;
    max-width: 100%; }
  .island.island--pdf, .island.island--profile {
    min-height: 160px; }
  .island.island--pdf {
    padding-left: 140px;
    background-image: url(../../revtrac/images/ico/pdf.svg);
    background-repeat: no-repeat;
    background-position: 40px 50px;
    background-size: 60px; }
  .island.island--profile {
    padding-left: 160px;
    position: relative; }
    .island.island--profile .island__media {
      position: absolute;
      left: 40px;
      top: 40px;
      border: 2px solid #fff;
      box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.1);
      width: 84px;
      height: 84px;
      border-radius: 50%; }
      .island.island--profile .island__media figure {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 100% 50%; }
        .island.island--profile .island__media figure img {
          opacity: 0; }

@media only screen and (max-width: 588px) {
  table.table {
    width: 100%; }
    table.table thead tr td,
    table.table thead tr th,
    table.table tbody tr:not(:last-child) td {
      border-bottom: none; }
    table.table tbody tr:not(:last-child) td:last-child {
      border-bottom: 2px solid #8F99AB; }
    table.table.table--reversed tbody tr:not(:last-child) td:last-child {
      border-color: #8F99AB; }
    table.table thead {
      display: none; }
    table.table tbody td {
      display: block; }
      table.table tbody td:before {
        content: attr(data-th);
        font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-weight: 700;
        font-style: normal;
        display: block; }
  .island.island--pdf {
    padding: 80px 20px 20px 20px;
    background-position: 20px 20px;
    background-size: 40px; }
  .island.island--profile {
    padding: 20px; }
    .island.island--profile .island__media {
      position: relative;
      left: auto;
      top: auto;
      margin-bottom: 20px; }
  /*
	.mega,
	h1,
	.h1 {
		font-size: 2em;
	}
	h2,
	.h2 {
		font-size: 1.8em;
	}
	h3,
	.h3 {
		font-size: 1.6em;
	}
	h4,
	.h4 {
		font-size: 1.4em;
	}
	h5,
	.h5 {
		font-size: 1.2em;
	}
	h6,
	.h6 {
		font-size: 1.1em;
	}
	*/ }

.btn {
  font-weight: 700;
  min-width: 220px;
  min-height: 45px;
  padding: 12px 30px;
  line-height: 1.4;
  background-color: transparent;
  text-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 24px;
  text-align: center;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: background-color 0.3s, color 0.3s; }
  .btn, .btn:focus, .btn:active, .btn:visited, .btn:hover {
    color: #8F99AB;
    text-decoration: none; }
  .btn:focus {
    outline: none; }
  .btn .icon,
  .btn .sprite,
  .btn .ginput_card_security_code_icon,
  .btn
  .gform_card_icon {
    top: -2px; }
  .btn .ico + span:not(.visuallyhidden) {
    display: inline-block;
    margin-left: 10px; }
  .btn span:not(.visuallyhidden) + .ico {
    display: inline-block;
    margin-left: 10px; }
  .btn .fa {
    font-size: 1.3em; }
  .btn .ico,
  .btn .fa {
    color: #8F99AB;
    position: relative; }
  .btn:not(.btn--ico):not(.btn--ico-alt) .ico,
  .btn:not(.btn--ico):not(.btn--ico-alt) .fa {
    top: 3px; }
  .btn.uppercase {
    font-size: 13px;
    padding-top: 14px; }
  .btn.waiting {
    color: transparent !important;
    background-color: #fff !important;
    pointer-events: none; }
    .btn.waiting[disabled] {
      opacity: 1 !important; }
    .btn.waiting:after {
      content: "";
      background-image: url(../../revtrac/images/spinner.svg);
      background-size: contain;
      width: 42px;
      height: 42px;
      right: auto;
      left: 50%;
      margin-left: -21px;
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }

.btn--brand {
  background-color: #f47c00; }
  .btn--brand, .btn--brand:focus, .btn--brand:active, .btn--brand:visited, .btn--brand:hover {
    color: #fff; }
  .btn--brand .ico,
  .btn--brand .fa {
    color: #fff; }
  .btn--brand:focus, .btn--brand:hover, .btn--brand:active {
    background-color: #c16200; }

.btn--primary {
  background-color: #f47c00; }
  .btn--primary, .btn--primary:focus, .btn--primary:active, .btn--primary:visited, .btn--primary:hover {
    color: #fff; }
  .btn--primary .ico,
  .btn--primary .fa {
    color: #fff; }
  .btn--primary:focus, .btn--primary:hover, .btn--primary:active {
    background-color: #c16200; }

.btn--primary-light {
  background-color: #ff9528; }
  .btn--primary-light, .btn--primary-light:focus, .btn--primary-light:active, .btn--primary-light:visited, .btn--primary-light:hover {
    color: #fff; }
  .btn--primary-light .ico,
  .btn--primary-light .fa {
    color: #fff; }
  .btn--primary-light:focus, .btn--primary-light:hover, .btn--primary-light:active {
    background-color: #f47c00; }

.btn--primary-lightest {
  background-color: #fac5c6; }
  .btn--primary-lightest, .btn--primary-lightest:focus, .btn--primary-lightest:active, .btn--primary-lightest:visited, .btn--primary-lightest:hover {
    color: #fff; }
  .btn--primary-lightest .ico,
  .btn--primary-lightest .fa {
    color: #fff; }
  .btn--primary-lightest:focus, .btn--primary-lightest:hover, .btn--primary-lightest:active {
    background-color: #f69698; }

.btn--secondary {
  background-color: #1E396B; }
  .btn--secondary, .btn--secondary:focus, .btn--secondary:active, .btn--secondary:visited, .btn--secondary:hover {
    color: #fff; }
  .btn--secondary .ico,
  .btn--secondary .fa {
    color: #fff; }
  .btn--secondary:focus, .btn--secondary:hover, .btn--secondary:active {
    background-color: #132443; }

.btn--secondary-light {
  background-color: #86A0C2; }
  .btn--secondary-light, .btn--secondary-light:focus, .btn--secondary-light:active, .btn--secondary-light:visited, .btn--secondary-light:hover {
    color: #fff; }
  .btn--secondary-light .ico,
  .btn--secondary-light .fa {
    color: #fff; }
  .btn--secondary-light:focus, .btn--secondary-light:hover, .btn--secondary-light:active {
    background-color: #6485b1; }

.btn--secondary-lightest {
  background-color: #a8bbd3; }
  .btn--secondary-lightest, .btn--secondary-lightest:focus, .btn--secondary-lightest:active, .btn--secondary-lightest:visited, .btn--secondary-lightest:hover {
    color: #fff; }
  .btn--secondary-lightest .ico,
  .btn--secondary-lightest .fa {
    color: #fff; }
  .btn--secondary-lightest:focus, .btn--secondary-lightest:hover, .btn--secondary-lightest:active {
    background-color: #86a0c2; }

.btn--tertiary {
  background-color: #8F99AB; }
  .btn--tertiary, .btn--tertiary:focus, .btn--tertiary:active, .btn--tertiary:visited, .btn--tertiary:hover {
    color: #fff; }
  .btn--tertiary .ico,
  .btn--tertiary .fa {
    color: #fff; }
  .btn--tertiary:focus, .btn--tertiary:hover, .btn--tertiary:active {
    background-color: #808ca0; }

.btn--tertiary-light {
  background-color: #EEEFF1; }
  .btn--tertiary-light, .btn--tertiary-light:focus, .btn--tertiary-light:active, .btn--tertiary-light:visited, .btn--tertiary-light:hover {
    color: #8F99AB; }
  .btn--tertiary-light .ico,
  .btn--tertiary-light .fa {
    color: #8F99AB; }
  .btn--tertiary-light:focus, .btn--tertiary-light:hover, .btn--tertiary-light:active {
    background-color: #d2d5da; }

.btn--tertiary-lightest {
  background-color: #FAFAFB; }
  .btn--tertiary-lightest, .btn--tertiary-lightest:focus, .btn--tertiary-lightest:active, .btn--tertiary-lightest:visited, .btn--tertiary-lightest:hover {
    color: #8F99AB; }
  .btn--tertiary-lightest .ico,
  .btn--tertiary-lightest .fa {
    color: #8F99AB; }
  .btn--tertiary-lightest:focus, .btn--tertiary-lightest:hover, .btn--tertiary-lightest:active {
    background-color: #dedee4; }

.btn--bar {
  display: block;
  margin-bottom: 5px;
  min-width: 0;
  width: 100%;
  min-height: 50px;
  border-radius: 3px;
  text-align: left;
  background-color: #FAFAFB; }
  .btn--bar, .btn--bar:visited {
    color: #8F99AB; }
    .btn--bar .ico,
    .btn--bar .fa, .btn--bar:visited .ico,
    .btn--bar:visited .fa {
      color: #8F99AB; }
  .btn--bar:focus, .btn--bar:hover, .btn--bar:active {
    color: #1E396B;
    background-color: #F1F1F4; }
    .btn--bar:focus .ico,
    .btn--bar:focus .fa, .btn--bar:hover .ico,
    .btn--bar:hover .fa, .btn--bar:active .ico,
    .btn--bar:active .fa {
      color: #1E396B; }

p > .btn--bar + br {
  display: none; }

.btn--small {
  min-width: 110px;
  padding-left: 25px;
  padding-right: 25px; }

.btn--large {
  min-width: 170px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 30px; }

.btn--auto {
  min-width: 0; }

.btn--ico,
.btn--ico-alt,
.btn--trans {
  border: none;
  padding: 0;
  line-height: 1;
  min-width: 0;
  min-height: 0; }

.btn--trans, .btn--trans:focus, .btn--trans:hover, .btn--trans:active {
  border-radius: 0;
  background: none;
  background-color: transparent; }

.btn--ico,
.btn--ico-alt {
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  padding: 0; }
  .btn--ico .ico,
  .btn--ico-alt .ico {
    transition: color 0.3s; }

.btn--ico {
  transition: background-color 0.3s;
  background-color: #e6ebef; }
  .btn--ico,
  .btn--ico .ico,
  .btn--ico .fa {
    color: #9ba3b2; }
  .btn--ico:focus, .btn--ico:hover, .btn--ico:active {
    background-color: #9ba3b2; }
    .btn--ico:focus,
    .btn--ico:focus .ico,
    .btn--ico:focus .fa, .btn--ico:hover,
    .btn--ico:hover .ico,
    .btn--ico:hover .fa, .btn--ico:active,
    .btn--ico:active .ico,
    .btn--ico:active .fa {
      color: #fff; }

.btn--ico-alt {
  border: 2px solid #8F99AB;
  transition: border-color 0.3s; }
  .btn--ico-alt:focus, .btn--ico-alt:hover, .btn--ico-alt:active {
    border-color: #f47c00; }
    .btn--ico-alt:focus .ico, .btn--ico-alt:hover .ico, .btn--ico-alt:active .ico {
      color: #f47c00; }

.mktoForm {
  visibility: hidden; }

.umfwrap {
  position: relative;
  min-height: 40px; }
  .umfwrap:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: url(../../revtrac/images/spinner.svg) no-repeat 0 0;
    background-size: contain;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s; }

.umfwrap[data-styles-ready="true"] {
  min-height: 0; }
  .umfwrap[data-styles-ready="true"]:before {
    opacity: 0; }
  .umfwrap[data-styles-ready="true"] .mktoForm {
    visibility: visible; }

.umfwrap .mktoForm {
  width: 100% !important;
  text-align: left;
  /*
	.mktoFormRow {
		.mktoRequiredField label.mktoLabel {
			@include font-weight(bold);
		}
	}
	*/ }
  .umfwrap .mktoForm:after {
    content: "";
    display: table;
    clear: both; }
  .umfwrap .mktoForm .mktoRequiredField .mktoAsterix,
  .umfwrap .mktoForm .mktoAsterix,
  .umfwrap .mktoForm .mktoClear,
  .umfwrap .mktoForm .mktoGutter,
  .umfwrap .mktoForm .mktoOffset,
  .umfwrap .mktoForm .mktoFormRow.hidden {
    display: none; }
  .umfwrap .mktoForm .mktoFormRow,
  .umfwrap .mktoForm .mktoButtonRow,
  .umfwrap .mktoForm .mktoFieldDescriptor,
  .umfwrap .mktoForm .mktoFormCol,
  .umfwrap .mktoForm .mktoFieldWrap,
  .umfwrap .mktoForm .mktoLabel {
    display: block;
    float: none;
    clear: both;
    width: 100%;
    margin: 0; }
    .umfwrap .mktoForm .mktoFormRow:after,
    .umfwrap .mktoForm .mktoButtonRow:after,
    .umfwrap .mktoForm .mktoFieldDescriptor:after,
    .umfwrap .mktoForm .mktoFormCol:after,
    .umfwrap .mktoForm .mktoFieldWrap:after,
    .umfwrap .mktoForm .mktoLabel:after {
      content: "";
      display: table;
      clear: both; }
  .umfwrap .mktoForm .mktoLabel.label {
    padding: 0;
    color: #8F99AB;
    font-weight: 700;
    margin-bottom: 6px; }
  .umfwrap .mktoForm .mktoFieldWrap {
    margin-bottom: 30px;
    position: relative; }
    .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList,
    .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList {
      width: 100% !important;
      padding-top: 10px; }
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList label {
        display: inline-block;
        width: calc(100% - 30px);
        font-weight: 400;
        font-size: 14px;
        color: #8F99AB; }
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList .icheckbox_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList .iradio_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList input + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList .icheckbox_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList .iradio_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList input + label {
        margin-left: 10px;
        width: calc(100% - 40px); }
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList .icheckbox_minimal.checked + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList .iradio_minimal.checked + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList input:checked + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList .icheckbox_minimal.checked + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList .iradio_minimal.checked + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList input:checked + label {
        color: #1E396B; }
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList .icheckbox_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoRadioList .iradio_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList .icheckbox_minimal + label,
      .umfwrap .mktoForm .mktoFieldWrap .mktoCheckboxList .iradio_minimal + label {
        margin-bottom: 10px; }
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoRadioList label,
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoCheckboxList label {
    width: auto; }
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoRadioList .icheckbox_minimal + label:not(:last-child),
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoRadioList .iradio_minimal + label:not(:last-child),
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoRadioList input + label:not(:last-child),
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoCheckboxList .icheckbox_minimal + label:not(:last-child),
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoCheckboxList .iradio_minimal + label:not(:last-child),
  .umfwrap .mktoForm .mktoFormRow.mk_list-horizontal .mktoFieldWrap .mktoCheckboxList input + label:not(:last-child) {
    margin-right: 20px; }
  .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap > label,
    .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap > .mktoLabel {
      display: inline-block;
      width: auto;
      margin-bottom: 0;
      -ms-flex: 1;
      flex: 1;
      padding-left: 20px;
      font-weight: 400; }
    .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap .mktoRadioList,
    .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap .mktoCheckboxList {
      width: auto !important;
      display: inline-block;
      padding-top: 0; }
      .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap .mktoRadioList label,
      .umfwrap .mktoForm .mktoFormRow.mk_single_choice .mktoFieldWrap .mktoCheckboxList label {
        display: none; }
  .umfwrap .mktoForm .mktoFormRow.mk_no-label > .mktoFieldDescriptor > .mktoFieldWrap > label {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; }
  .umfwrap .mktoForm .mktoFormRow.mk_offscreen {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; }
  .umfwrap .mktoForm fieldset.mktoFormCol {
    margin-bottom: 30px;
    border-radius: 5px;
    border-color: #d8dbe2; }
    .umfwrap .mktoForm fieldset.mktoFormCol > legend {
      padding: 0 10px;
      font-size: 17px;
      color: #1E396B;
      font-weight: 700; }
  .umfwrap .mktoForm .mktoError {
    color: #F04E57; }
    .umfwrap .mktoForm .mktoError .mktoErrorArrowWrap {
      display: none !important; }
  .umfwrap .mktoForm .mktoFieldWrap.mktoRequiredField .mktoInvalid + .mktoError {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important; }
  .umfwrap .mktoForm .mktoFieldWrap .text-input {
    padding: 8px 15px;
    height: 50px !important;
    margin-bottom: 0;
    line-height: 1.8; }
  .umfwrap .mktoForm .mktoFieldWrap textarea.text-input {
    padding-top: 10px;
    padding-bottom: 10px;
    height: 130px !important; }
  .umfwrap .mktoForm .mktoFieldWrap select[multiple] {
    width: 100% !important;
    height: 120px !important;
    font-size: 14px;
    color: #8F99AB;
    padding: 0; }
    .umfwrap .mktoForm .mktoFieldWrap select[multiple] option:not(:last-child) {
      margin-bottom: 2px;
      padding: 5px 10px; }
  .umfwrap .mktoForm .mktoFieldWrap .mktoHtmlText {
    color: #8F99AB;
    width: 100% !important;
    font-size: 15px;
    line-height: 26px; }
  .umfwrap .mktoForm .mktoFormFooter .mktoButtonWrap {
    display: block;
    text-align: center; }
  .umfwrap .mktoForm .mktoButtonWrap .form-btn {
    background-color: #f47c00;
    width: auto; }
    .umfwrap .mktoForm .mktoButtonWrap .form-btn, .umfwrap .mktoForm .mktoButtonWrap .form-btn:focus, .umfwrap .mktoForm .mktoButtonWrap .form-btn:active, .umfwrap .mktoForm .mktoButtonWrap .form-btn:visited, .umfwrap .mktoForm .mktoButtonWrap .form-btn:hover {
      color: #fff; }
    .umfwrap .mktoForm .mktoButtonWrap .form-btn .ico,
    .umfwrap .mktoForm .mktoButtonWrap .form-btn .fa {
      color: #fff; }
    .umfwrap .mktoForm .mktoButtonWrap .form-btn:focus, .umfwrap .mktoForm .mktoButtonWrap .form-btn:hover, .umfwrap .mktoForm .mktoButtonWrap .form-btn:active {
      background-color: #c16200; }
  .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt {
    background-color: #8F99AB;
    width: 100%; }
    .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt, .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:focus, .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:active, .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:visited, .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:hover {
      color: #fff; }
    .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt .ico,
    .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt .fa {
      color: #fff; }
    .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:focus, .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:hover, .umfwrap .mktoForm .mktoButtonWrap .form-btn--alt:active {
      background-color: #808ca0; }

@media only screen and (max-width: 588px) {
  .umfwrap .mktoForm .mktoFieldWrap select[multiple] {
    height: 50px !important; } }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_one,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_two,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_three,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_four,
.umfwrap .mktoForm .mktoFormRow.mk_left_third,
.umfwrap .mktoForm .mktoFormRow.mk_middle_third,
.umfwrap .mktoForm .mktoFormRow.mk_left_two_thirds,
.umfwrap .mktoForm .mktoFormRow.mk_left_half {
  float: left; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_four,
.umfwrap .mktoForm .mktoFormRow.mk_right_third,
.umfwrap .mktoForm .mktoFormRow.mk_right_two_thirds,
.umfwrap .mktoForm .mktoFormRow.mk_right_half {
  float: right; }

.umfwrap .mktoForm .mktoFormRow.mk_left_half,
.umfwrap .mktoForm .mktoFormRow.mk_right_half {
  width: 50%; }

.umfwrap .mktoForm .mktoFormRow.mk_left_third,
.umfwrap .mktoForm .mktoFormRow.mk_middle_third,
.umfwrap .mktoForm .mktoFormRow.mk_right_third {
  width: 33.333%; }

.umfwrap .mktoForm .mktoFormRow.mk_left_two_thirds,
.umfwrap .mktoForm .mktoFormRow.mk_right_two_thirds {
  width: 66.666%; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_one,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_two,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_three,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_four {
  width: 25%; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_one,
.umfwrap .mktoForm .mktoFormRow.mk_left_third,
.umfwrap .mktoForm .mktoFormRow.mk_left_half {
  padding-right: 10px; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_two {
  padding-right: 10px; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_three {
  padding-left: 10px; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_four,
.umfwrap .mktoForm .mktoFormRow.mk_right_third,
.umfwrap .mktoForm .mktoFormRow.mk_right_two_thirds,
.umfwrap .mktoForm .mktoFormRow.mk_right_half {
  padding-left: 10px; }

.umfwrap .mktoForm .mktoFormRow.mk_fourth_one,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_two,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_three,
.umfwrap .mktoForm .mktoFormRow.mk_fourth_four,
.umfwrap .mktoForm .mktoFormRow.mk_middle_third,
.umfwrap .mktoForm .mktoFormRow.mk_right_third,
.umfwrap .mktoForm .mktoFormRow.mk_right_two_thirds,
.umfwrap .mktoForm .mktoFormRow.mk_right_half {
  clear: none; }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .umfwrap .mktoForm .mktoFormRow.mk_left_third,
  .umfwrap .mktoForm .mktoFormRow.mk_middle_third,
  .umfwrap .mktoForm .mktoFormRow.mk_right_third,
  .umfwrap .mktoForm .mktoFormRow.mk_left_two_thirds,
  .umfwrap .mktoForm .mktoFormRow.mk_right_two_thirds {
    float: left;
    width: 50%;
    padding-left: 0;
    padding-right: 0; }
  .umfwrap .mktoForm .mktoFormRow.mk_left_third {
    padding-right: 10px; } }

@media only screen and (max-width: 588px) {
  .umfwrap .mktoForm .mktoFormRow.mk_left_third,
  .umfwrap .mktoForm .mktoFormRow.mk_middle_third,
  .umfwrap .mktoForm .mktoFormRow.mk_right_third,
  .umfwrap .mktoForm .mktoFormRow.mk_left_two_thirds,
  .umfwrap .mktoForm .mktoFormRow.mk_right_two_thirds,
  .umfwrap .mktoForm .mktoFormRow.mk_left_half,
  .umfwrap .mktoForm .mktoFormRow.mk_right_half {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_one,
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_two,
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_three,
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_four {
    float: none;
    padding-right: 0;
    padding-left: 0;
    width: 50%; }
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_one,
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_three {
    float: left;
    padding-right: 5px; }
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_two,
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_four {
    float: right;
    padding-left: 5px; }
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_three {
    clear: both; }
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_two,
  .umfwrap .mktoForm .mktoFormRow.mk_fourth_four {
    padding-right: 0; } }

.form-fields, .gform_fields,
.gform_fields {
  padding-left: 0 !important; }
  .form-fields:after, .gform_fields:after,
  .gform_fields:after {
    content: "";
    display: table;
    clear: both; }
  .form-fields li, .gform_fields li, .form-fields > .gfield, .gform_fields > .gfield,
  .gform_fields li,
  .gform_fields > .gfield {
    margin-bottom: 30px; }

label,
.label,
.gpoll_field_label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px; }

.ginput_container label {
  font-weight: 400;
  color: #8F99AB; }

input {
  border-radius: 2px; }

.gfield img {
  width: auto;
  height: auto; }

.gfield:not(.gf_right_half) {
  clear: both; }

.ginput_full,
.ginput_card_expiration_container {
  margin-bottom: 4px;
  display: block;
  width: 100%; }
  .ginput_full:after,
  .ginput_card_expiration_container:after {
    content: "";
    display: table;
    clear: both; }
  .ginput_full input,
  .ginput_card_expiration_container input {
    width: 100%; }

.ginput_left,
.ginput_cardinfo_left,
.ginput_card_expiration_container .styled-select:first-of-type {
  margin-bottom: 4px;
  display: inline-block;
  width: 50%;
  padding-right: 10px;
  float: left;
  position: relative; }
  .ginput_left input,
  .ginput_cardinfo_left input,
  .ginput_card_expiration_container .styled-select:first-of-type input {
    width: 100%; }

.ginput_right,
.ginput_cardinfo_right,
.ginput_card_expiration_container .styled-select:last-of-type {
  margin-bottom: 4px;
  display: inline-block;
  width: 50%;
  padding-left: 10px;
  float: right;
  clear: none;
  position: relative; }
  .ginput_right input,
  .ginput_cardinfo_right input,
  .ginput_card_expiration_container .styled-select:last-of-type input {
    width: 100%; }

.gfield_required {
  padding-left: 4px; }

.gform_card_icon_container {
  margin-bottom: 6px; }

.ginput_card_security_code_icon,
.gform_card_icon {
  background-image: url(../../../plugins/gravityforms/images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  width: 32px;
  height: 24px; }

.ginput_card_security_code {
  margin-bottom: 6px; }

.ginput_card_security_code_icon {
  background-position: 0 -128px; }
  .ginput_card_security_code_icon + label {
    display: inline-block;
    margin-left: 10px; }

.gform_card_icon {
  margin-left: 6px; }
  .gform_card_icon:first-child {
    margin-left: 0; }
  .gform_card_icon.gform_card_icon_visa {
    background-position: -2px -4px; }
  .gform_card_icon.gform_card_icon_mastercard {
    background-position: -38px -4px; }
  .gform_card_icon.gform_card_icon_amex {
    background-position: -74px -4px; }

::-webkit-input-placeholder {
  color: #86A0C2; }

::-moz-placeholder {
  color: #86A0C2; }

:-ms-input-placeholder {
  color: #86A0C2; }

input:-moz-placeholder {
  color: #86A0C2; }

input.text-input,
textarea.text-input,
textarea,
.text-input input,
.text-input textarea,
.gform_fields textarea,
.gform_fields input[type="text"],
.gform_fields input[type="password"],
.gform_fields input[type="name"],
.gform_fields input[type="email"],
.gform_fields input[type="url"],
.gform_fields input[type="tel"],
.gform_fields input[type="color"],
.gform_fields input[type="number"] {
  display: block;
  max-width: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #EEEFF1;
  color: #1E396B;
  padding: 8px 15px;
  height: 50px;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  cursor: default;
  border-radius: 4px;
  box-shadow: none;
  -webkit-appearance: none; }
  input.text-input.placeholder,
  textarea.text-input.placeholder,
  textarea.placeholder,
  .text-input input.placeholder,
  .text-input textarea.placeholder,
  .gform_fields textarea.placeholder,
  .gform_fields input[type="text"].placeholder,
  .gform_fields input[type="password"].placeholder,
  .gform_fields input[type="name"].placeholder,
  .gform_fields input[type="email"].placeholder,
  .gform_fields input[type="url"].placeholder,
  .gform_fields input[type="tel"].placeholder,
  .gform_fields input[type="color"].placeholder,
  .gform_fields input[type="number"].placeholder {
    color: #86A0C2; }
  input.text-input:focus,
  textarea.text-input:focus,
  textarea:focus,
  .text-input input:focus,
  .text-input textarea:focus,
  .gform_fields textarea:focus,
  .gform_fields input[type="text"]:focus,
  .gform_fields input[type="password"]:focus,
  .gform_fields input[type="name"]:focus,
  .gform_fields input[type="email"]:focus,
  .gform_fields input[type="url"]:focus,
  .gform_fields input[type="tel"]:focus,
  .gform_fields input[type="color"]:focus,
  .gform_fields input[type="number"]:focus {
    outline: none;
    border-color: #8F99AB;
    box-shadow: none; }
  input.text-input:hover,
  textarea.text-input:hover,
  textarea:hover,
  .text-input input:hover,
  .text-input textarea:hover,
  .gform_fields textarea:hover,
  .gform_fields input[type="text"]:hover,
  .gform_fields input[type="password"]:hover,
  .gform_fields input[type="name"]:hover,
  .gform_fields input[type="email"]:hover,
  .gform_fields input[type="url"]:hover,
  .gform_fields input[type="tel"]:hover,
  .gform_fields input[type="color"]:hover,
  .gform_fields input[type="number"]:hover {
    cursor: text; }

textarea,
.gform_fields textarea,
.text-input textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  height: 130px;
  resize: vertical; }

.gform_fields .file {
  min-height: 43px; }
  .gform_fields .file .ginput_container {
    position: relative; }
  .gform_fields .file .btn {
    width: 100%;
    max-width: 100%;
    height: 50px;
    line-height: 50px; }
  .gform_fields .file input[type="file"] {
    width: 100%;
    max-width: 100%;
    position: absolute;
    z-index: 2;
    height: 50px;
    padding: 0;
    color: white;
    font-weight: normal;
    font-size: 10px;
    opacity: 0;
    cursor: pointer; }

.ginput_container_fileupload {
  /*
	input[type="file"] {
		color: #ccc;
	}
	*/ }
  .ginput_container_fileupload .gform_button_select_files {
    margin-left: 20px; }
    @media only screen and (max-width: 588px) {
      .ginput_container_fileupload .gform_button_select_files {
        margin-left: 0;
        width: 100%;
        margin-top: 15px; } }

select.hasCustomSelect {
  width: 100% !important; }

select:focus {
  outline: none; }

/*
select:not([class*="ui-datepicker"]) {
	-webkit-appearance: none;
	width: 100%;
	background: $input-bg-color;
	border: 1px solid $input-border-color;
	color: $input-text-color;
	padding: 4px 15px;
	height: $base-input-height;
	vertical-align: middle;
	border-radius: $input-radius;
	box-shadow: none;//inset 0 1px 3px 0 rgba(0,0,0,0.10);
	font-size: $base-font-size;
	&:focus {
		outline: none;
	}
	&.hasCustomSelect {
		width: 100% !important;
	}
}
*/
select[multiple] {
  padding: 12px;
  height: 80px; }

.ginput_container_select {
  position: relative; }

/*
span.customSelectInner {
	width: 100% !important;
	pointer-events: none;
	background: none;
	position: relative;
	&:after {
		content: '';
		display: inline-block;
		position: absolute;
		right: 0;
		top: 9px;
		//@include icon('select-arrow',true);
	}
}
.ginput_container_date {
	span.customSelectInner {
		&:after {
			right: -6px;
			@include media-query(desk-wide) {
				right: 0;
			}
		}
	}
}
*/
.chzn-drop {
  color: #1E396B; }

.gfield.with-chzn .ginput_container {
  height: 50px; }

.gfield.with-chzn .chzn-container .chzn-single {
  height: 50px;
  line-height: 50px;
  background-image: none;
  background-color: #fff;
  border-color: #EEEFF1;
  padding-left: 12px;
  font-size: 15px; }
  .gfield.with-chzn .chzn-container .chzn-single div b {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAICAYAAAD9aA/QAAAAfElEQVQoFZXRgQ2AIAwEwI7AKIzESIzACIzCCI7gBvUxhWDFtJp8REqPCEREBeEfKcxMVu4FQJsTbhY46gMOgA8D7/UwGq33/CU0ReREdsfS56OFrfUJ90k8CdnBaW3yjB+w4Fnh2QPpNS9Y8Cp41Q3e7y84AC6I+7L0hhc28oiRLYTxoAAAAABJRU5ErkJggg==);
    background-position: right 50%; }

.gfield.with-chzn .chzn-container.chzn-container-active .chzn-single {
  outline: none;
  border-color: #EEEFF1;
  box-shadow: none; }

.gfield.with-chzn .chzn-container.chzn-container-single .chzn-single div {
  background-image: none;
  background-color: transparent;
  border: none;
  width: 23px; }

.gfield.with-chzn .chzn-container .chzn-search input {
  width: 100% !important;
  height: auto; }

.gfield.with-chzn.gfield_error .chzn-container .chzn-single {
  border-color: #F04E57; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  height: 50px; }

.gform_wrapper .chosen-container .chosen-drop {
  color: #8F99AB; }

.check-list,
ul.gfield_radio,
ul.gfield_checkbox,
ul.gfield_radio,
ul.gfield_checkbox {
  padding: 10px 0 0 0; }
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li, .check-list label,
  ul.gfield_radio label,
  ul.gfield_checkbox label,
  ul.gfield_radio li,
  ul.gfield_radio label,
  ul.gfield_checkbox li,
  ul.gfield_checkbox label {
    display: inline-block;
    margin: 0;
    font-size: 15px;
    vertical-align: top; }
  .check-list label,
  ul.gfield_radio label,
  ul.gfield_checkbox label,
  ul.gfield_radio label,
  ul.gfield_checkbox label {
    padding-left: 8px;
    margin-top: 4px; }
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li,
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto;
    margin-bottom: 7px;
    margin-right: 20px; }
  .check-list li:last-child,
  ul.gfield_radio li:last-child,
  ul.gfield_checkbox li:last-child,
  ul.gfield_radio li:last-child,
  ul.gfield_checkbox li:last-child {
    margin-right: 0; }
  .check-list input[type="checkbox"],
  ul.gfield_radio input[type="checkbox"],
  ul.gfield_checkbox input[type="checkbox"], .check-list input[type="radio"],
  ul.gfield_radio input[type="radio"],
  ul.gfield_checkbox input[type="radio"],
  ul.gfield_radio input[type="checkbox"],
  ul.gfield_radio input[type="radio"],
  ul.gfield_checkbox input[type="checkbox"],
  ul.gfield_checkbox input[type="radio"] {
    vertical-align: top;
    margin-top: 6px; }
    .check-list input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_radio input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="checkbox"][value="gf_other_choice"], .check-list input[type="radio"][value="gf_other_choice"],
    ul.gfield_radio input[type="radio"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="radio"][value="gf_other_choice"],
    ul.gfield_radio input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_radio input[type="radio"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="radio"][value="gf_other_choice"] {
      margin-top: 14px; }
  .check-list input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_radio input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_checkbox input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_radio input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_checkbox input[value="gf_other_choice"] + input[type="text"] {
    display: inline-block;
    width: 80%;
    margin-left: 20px; }

.list-vertical ul.gfield_radio li,
.list-vertical ul.gfield_checkbox li {
  display: block;
  margin-left: 0;
  margin-right: 0; }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li,
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto; } }

@media only screen and (max-width: 588px) {
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li,
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto; } }

.gfield_date_day,
.gfield_date_month,
.gfield_date_year,
.gfield_date_dropdown_day,
.gfield_date_dropdown_month,
.gfield_date_dropdown_year,
.gfield_time_hour,
.gfield_time_minute,
.gfield_time_ampm {
  display: inline-block !important;
  width: 30.9% !important;
  margin-right: 2.8%; }
  .gfield_date_day:last-child,
  .gfield_date_month:last-child,
  .gfield_date_year:last-child,
  .gfield_date_dropdown_day:last-child,
  .gfield_date_dropdown_month:last-child,
  .gfield_date_dropdown_year:last-child,
  .gfield_time_hour:last-child,
  .gfield_time_minute:last-child,
  .gfield_time_ampm:last-child {
    margin-right: 0; }
  .gfield_date_day i,
  .gfield_date_day label,
  .gfield_date_month i,
  .gfield_date_month label,
  .gfield_date_year i,
  .gfield_date_year label,
  .gfield_date_dropdown_day i,
  .gfield_date_dropdown_day label,
  .gfield_date_dropdown_month i,
  .gfield_date_dropdown_month label,
  .gfield_date_dropdown_year i,
  .gfield_date_dropdown_year label,
  .gfield_time_hour i,
  .gfield_time_hour label,
  .gfield_time_minute i,
  .gfield_time_minute label,
  .gfield_time_ampm i,
  .gfield_time_ampm label {
    display: inline-block;
    font-size: 15px; }

.gfield_date_year,
.gfield_date_dropdown_year,
.gfield_time_ampm {
  margin-right: 0; }

.gfield_time_hour input {
  display: inline-block;
  max-width: 90%; }

.gfield_time_ampm {
  display: block;
  float: right; }

.gf_hide_ampm .gfield_time_ampm {
  display: none !important; }

.ginput_container.ginput_container_date,
.ginput_container.ginput_container_time {
  position: relative; }

/*
.datepicker_with_icon {
	max-width: 90% !important;
	display: inline-block !important;
}
*/
.ui-datepicker-trigger {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%); }

.gfield .clear-multi {
  height: 50px; }
  .gfield .clear-multi > .ginput_container:last-child {
    float: right; }

/*
.gform_wrapper .gsection.collapsible-sections-field {
	background: $colour-grey-bg;
	padding: 30px 90px 30px 50px;
	border: 0;
	cursor: pointer;
	position: relative;
	margin-top: 10px;
	margin-bottom: 0;
	@include media-query(portable) {
		padding: 20px 50px 20px 20px;
	}
	.gsection_title:after {
		right: 50px !important;
		transition: transform $transition-duration ease-in-out;
		line-height: 0;
		color: $colour-primary;
		height: 10px;
		margin-top: -5px;
		@include media-query(portable) {
			right: 30px !important;
		}
	}
	&.collapsible-sections-open {
		.gsection_title:after {
			transform: rotate(180deg);
			transform-origin: center;
			content: "\e900" !important;
		}
	}
	.gsection_title {
		@include brand-font;
		font-size: 20px;
	}
}
.collapsible-sections-collapsible-body {
	background: $colour-grey-bg;
	padding: 0 50px 30px 50px !important;
	border: 0 !important;
	width: 100%;
	position: relative;
	@include media-query(portable) {
		padding: 0 20px 20px 20px !important;
	}
	&:after {
		content: "";
        display: table;
        clear: both; 
	}
}
*/
.gform_title,
.gsection_title {
  margin-bottom: 0;
  line-height: 1; }

.gsection_title {
  font-size: 30px;
  /*
	padding: 13px;
	background: $brand-color;
	border-radius: 4px 4px 0 0;
	color: $colour-lightest;
	margin-top: $base-spacing-unit;
	*/ }
  .gsection_title:empty {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; }

.gsection_description {
  padding: 14px 0 0;
  font-size: 13px; }

.gform_description {
  display: block;
  padding-top: 20px; }

.gf_page_steps {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-radius: 4px;
  overflow: auto;
  padding-left: 10px; }

.gf_step {
  float: left;
  margin-right: 40px;
  font-size: 16px;
  line-height: 60px; }
  .gf_step a {
    color: #445e6f; }
  .gf_step.gf_step_active {
    color: #f47c00; }

.gf_progressbar_wrapper {
  padding: 20px 0;
  margin-bottom: 20px; }

.gf_progressbar_title {
  font-size: 17px;
  margin-bottom: 10px;
  color: #f47c00; }

.gf_progressbar {
  background: transparent;
  height: 20px;
  overflow: hidden;
  border: 1px solid #f47c00;
  border-radius: 4px; }

.gf_progressbar_percentage {
  background: #f47c00;
  height: 14px;
  margin: 2px;
  border-radius: 4px; }
  .gf_progressbar_percentage span {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; }

.gform_page_footer {
  padding: 20px 0;
  margin: 20px 0;
  text-align: left;
  position: relative;
  margin-top: 30px; }
  .gform_page_footer:after {
    content: "";
    display: table;
    clear: both; }

.gform_page .gform_page_footer {
  min-height: 100px; }
  .gform_page .gform_page_footer .gform_ajax_spinner {
    float: none;
    display: block;
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%); }
  .gform_page .gform_page_footer input[type="submit"],
  .gform_page .gform_page_footer button[type="submit"] {
    float: right; }

.gform_page:first-child .gform_page_footer .gform_save_link {
  float: left; }

.gform_page:first-child .gform_page_footer .gform_ajax_spinner {
  top: 50%;
  transform: translateX(-50%) translateY(-50%); }

.gform_page:not(:first-child) .gform_page_footer .gform_ajax_spinner {
  top: 25px; }

.gform_page:not(:first-child) .gform_page_footer .gform_save_link {
  display: block;
  clear: both;
  margin-top: 100px; }

.submit-on-left .gform_page .gform_page_footer input[type="submit"],
.submit-on-left .gform_page .gform_page_footer button[type="submit"] {
  float: left; }

.gform_save_link {
  display: inline-block;
  margin-top: 15px; }

@media only screen and (max-width: 588px) {
  .gform_page:not(:first-child) .gform_page_footer .gform_ajax_spinner {
    top: 100px; }
  .gform_page:not(:first-child) .gform_page_footer .gform_save_link {
    margin-top: 150px; } }

table.gfield_list {
  border: 0;
  margin-bottom: 0; }
  table.gfield_list thead + tbody tr:first-child td {
    padding-top: 20px; }
    @media only screen and (max-width: 798px) {
      table.gfield_list thead + tbody tr:first-child td.gfield_list_icons {
        margin-left: auto; } }
  table.gfield_list thead tr th {
    border-bottom: 0 !important;
    font-size: 13px;
    padding-bottom: 4px; }
  table.gfield_list tr {
    border-bottom: 0; }
    table.gfield_list tr td.gfield_list_cell, table.gfield_list tr td.gfield_list_icons {
      border-bottom: 0 !important;
      padding-bottom: 10px; }
    table.gfield_list tr td.gfield_list_cell {
      padding-right: 15px; }

.gfield_list td {
  padding-top: 0; }

.gfield_list_cell {
  padding-left: 10px;
  padding-right: 10px; }
  .gfield_list_cell input {
    width: 100%; }
  .gfield_list_cell:first-child {
    padding-left: 0; }

.gfield_list_icons {
  text-align: right;
  padding-right: 0;
  width: 40px;
  padding-top: 8px !important; }

.ginput_complex {
  margin-bottom: 10px; }
  .ginput_complex > span {
    display: block;
    margin-bottom: 20px; }
  .ginput_complex label {
    font-size: 15px;
    padding-top: 4px; }

.gfield_description,
.gform_fields .instruction {
  color: #86A0C2;
  font-size: 14px;
  font-style: italic; }

.gform_fields .instruction {
  padding-top: 4px; }

.validation_error,
.gfield_description.validation_message,
.gfield_error .gfield_label,
.gfield.single-option.gfield_error .ginput_container label,
.gfield.no-label.gfield_error .ginput_container label {
  font-style: normal;
  padding: 0;
  font-size: 15px;
  color: #F04E57;
  background: none; }

.gfield_error input.text-input,
.gfield_error textarea,
.gfield_error input[type="text"],
.gfield_error input[type="password"],
.gfield_error input[type="name"],
.gfield_error input[type="email"],
.gfield_error input[type="url"],
.gfield_error input[type="tel"],
.gfield_error input[type="color"],
.gfield_error input[type="number"],
.gfield_error.text-input input,
.gfield_error.text-input textarea {
  border-color: #F04E57;
  background-color: #fff;
  color: #F04E57; }

.gfield_error .styled-select,
.gfield_error .customSelect {
  border-color: #F04E57;
  color: #F04E57; }

.gform_heading {
  padding-bottom: 20px; }

.validation_error {
  margin-bottom: 20px;
  background: #F04E57;
  padding: 6px 20px;
  border-radius: 4px;
  color: #fff; }

.gfield_description.validation_message {
  display: none; }

#gforms_confirmation_message {
  margin-bottom: 20px; }

.gform_wrapper .gfield_password_strength {
  border: 1px solid #EEEFF1;
  margin: 0;
  padding: 10px;
  text-align: center;
  min-width: 200px;
  width: 100%;
  background-color: #EEE;
  color: #EEEFF1;
  clear: both;
  border-radius: 4px; }
  .gform_wrapper .gfield_password_strength.bad {
    background-color: #ffe5d5;
    border-color: #FF853C;
    color: #FF853C; }
  .gform_wrapper .gfield_password_strength.good {
    background-color: #ffeb99;
    border-color: #FC0;
    color: #cca300; }
  .gform_wrapper .gfield_password_strength.strong {
    background-color: green;
    border-color: green;
    color: #fff; }
  .gform_wrapper .gfield_password_strength.short, .gform_wrapper .gfield_password_strength.mismatch {
    background-color: #fbcece;
    border-color: #f04040;
    color: #f04040; }

.gform_footer {
  text-align: left;
  padding: 20px 0 0; }
  .gform_footer:after {
    content: "";
    display: table;
    clear: both; }
  @media only screen and (max-width: 798px) {
    .gform_footer {
      padding-left: 10px;
      padding-right: 10px; } }

.submit-on-right .gform_footer {
  text-align: right; }

.submit-on-left .gform_footer {
  text-align: left; }

.gform_ajax_spinner {
  display: block;
  width: 42px;
  height: 42px; }

.gform_validation_container {
  display: none; }

.gform_hidden {
  display: none !important; }

.gform_wrapper input[type="button"],
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
  cursor: pointer;
  display: inline-block;
  position: relative;
  max-width: 100%;
  vertical-align: middle; }

.gform_wrapper form.waiting input[type="submit"],
.gform_wrapper form.waiting button[type="submit"] {
  color: transparent !important;
  background-color: #fff; }
  .gform_wrapper form.waiting input[type="submit"][disabled],
  .gform_wrapper form.waiting button[type="submit"][disabled] {
    opacity: 1 !important; }
  .gform_wrapper form.waiting input[type="submit"]:after,
  .gform_wrapper form.waiting button[type="submit"]:after {
    content: "";
    background-image: url(../../revtrac/images/spinner.svg);
    background-size: contain;
    width: 42px;
    height: 42px;
    right: auto;
    left: 50%;
    margin-left: -21px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

.gform_wrapper form.waiting .gform_ajax_spinner {
  display: none !important; }

.gform_wrapper input[type="submit"][disabled="disabled"],
.gform_wrapper button[type="submit"][disabled="disabled"],
.gform_page_footer .gform_next_button[disabled="disabled"] {
  cursor: default;
  opacity: 0.3; }

@media only screen and (max-width: 588px) {
  .gform_wrapper input[type="button"],
  .gform_wrapper input[type="submit"],
  .gform_wrapper button[type="submit"] {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 100%; } }

.gfield.gf_fourth_one,
.gfield.gf_fourth_two,
.gfield.gf_fourth_three,
.gfield.gf_fourth_four,
.gfield.gf_left_third,
.gfield.gf_middle_third,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_left_half,
.gfield.gf_right_half {
  float: left; }

.gfield.gf_fourth_four,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_right_half {
  float: right; }

.gfield.gf_left_half,
.gfield.gf_right_half {
  width: 50%; }

.gfield.gf_left_third,
.gfield.gf_middle_third,
.gfield.gf_right_third {
  width: 33.333%; }

.gfield.gf_right_two_thirds {
  width: 66.666%; }

.gfield.gf_fourth_one,
.gfield.gf_fourth_two,
.gfield.gf_fourth_three,
.gfield.gf_fourth_four {
  width: 25%; }

.gfield.gf_fourth_one,
.gfield.gf_left_third,
.gfield.gf_left_half {
  padding-right: 10px; }

.gfield.gf_fourth_two {
  padding-right: 10px; }

.gfield.gf_fourth_three {
  padding-left: 10px; }

.gfield.gf_fourth_four,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_right_half {
  padding-left: 10px; }

.gfield.gf_fourth_one,
.gfield.gf_fourth_two,
.gfield.gf_fourth_three,
.gfield.gf_fourth_four,
.gfield.gf_middle_third,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_right_half {
  clear: none; }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .gfield.gf_left_third,
  .gfield.gf_middle_third,
  .gfield.gf_right_third,
  .gfield.gf_right_two_thirds {
    float: left;
    width: 50%;
    padding-left: 0;
    padding-right: 0; }
  .gfield.gf_left_third {
    padding-right: 10px; } }

@media only screen and (max-width: 588px) {
  .gfield.gf_left_third,
  .gfield.gf_middle_third,
  .gfield.gf_right_third,
  .gfield.gf_right_two_thirds,
  .gfield.gf_left_half,
  .gfield.gf_right_half {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .gfield.gf_fourth_one,
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_three,
  .gfield.gf_fourth_four {
    float: none;
    padding-right: 0;
    padding-left: 0;
    width: 50%; }
  .gfield.gf_fourth_one,
  .gfield.gf_fourth_three {
    float: left;
    padding-right: 5px; }
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_four {
    float: right;
    padding-left: 5px; }
  .gfield.gf_fourth_three {
    clear: both; }
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_four {
    padding-right: 0; } }

.gform_wrapper .form-btn {
  background-color: #f47c00; }
  .gform_wrapper .form-btn, .gform_wrapper .form-btn:focus, .gform_wrapper .form-btn:active, .gform_wrapper .form-btn:visited, .gform_wrapper .form-btn:hover {
    color: #fff; }
  .gform_wrapper .form-btn .ico,
  .gform_wrapper .form-btn .fa {
    color: #fff; }
  .gform_wrapper .form-btn:focus, .gform_wrapper .form-btn:hover, .gform_wrapper .form-btn:active {
    background-color: #c16200; }

.gform_wrapper .form-btn--alt {
  background-color: #8F99AB; }
  .gform_wrapper .form-btn--alt, .gform_wrapper .form-btn--alt:focus, .gform_wrapper .form-btn--alt:active, .gform_wrapper .form-btn--alt:visited, .gform_wrapper .form-btn--alt:hover {
    color: #fff; }
  .gform_wrapper .form-btn--alt .ico,
  .gform_wrapper .form-btn--alt .fa {
    color: #fff; }
  .gform_wrapper .form-btn--alt:focus, .gform_wrapper .form-btn--alt:hover, .gform_wrapper .form-btn--alt:active {
    background-color: #808ca0; }

.gfield.no-label > .gfield_label {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.gfield.single-option .check-list li, .gfield.single-option
ul.gfield_radio li, .gfield.single-option
ul.gfield_checkbox li,
.gfield.single-option ul.gfield_radio li,
.gfield.single-option ul.gfield_checkbox li {
  width: 100%; }

.gfield.single-option .check-list label, .gfield.single-option
ul.gfield_radio label, .gfield.single-option
ul.gfield_checkbox label,
.gfield.single-option ul.gfield_radio label,
.gfield.single-option ul.gfield_checkbox label {
  max-width: calc(100% - 30px); }

.gfield.offscreen {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.gform_wrapper form.hide-all-labels .gfield > .gfield_label {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.ginput_container_date {
  position: relative;
  /*
	&:after {
		content: "";
		display: block;
		width: 1px;
		height: 40px;
		background-color: $input-border-color;
		overflow: hidden;
		top: 1px;
		right: 30px;
		position: absolute;
		@include media-query(desk-wide) {
			right: 40px;
		}
	}
	*/ }
  .ginput_container_date input.datepicker_with_icon {
    padding-right: 40px; }
    .ginput_container_date input.datepicker_with_icon + .ui-datepicker-trigger {
      width: 20px;
      right: 10px;
      cursor: pointer; }

.gfield:not(.no-input-replace):not(.image-choices-field) ul.gfield_radio li input {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.gfield:not(.no-input-replace):not(.image-choices-field) ul.gfield_radio li label {
  min-height: 28px; }

.gfield_error ul.gfield_radio li label {
  color: #F04E57; }

.gform_body > ul.gform_fields > li.gsection:first-child:not(.collapsible-sections-field) {
  background: #EEEFF1;
  padding: 30px 50px 20px 50px;
  border: 0;
  margin-bottom: 0; }
  @media only screen and (max-width: 798px) {
    .gform_body > ul.gform_fields > li.gsection:first-child:not(.collapsible-sections-field) {
      padding: 20px 20px 20px 20px; } }

/*
----------------------------------------------------------------

jquery-ui.custom.css
Gravity Forms Custom jQuery UI styles
http: //www.gravityforms.com
updated: March 18, 2013 4:15 PM

Gravity Forms is a Rocketgenius project
copyright 2013 Rocketgenius Inc.
http: //www.rocketgenius.com
copyright 2009 (http://jqueryui.com/about)
dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.

NOTE: DO NOT EDIT THIS FILE!
THIS FILE IS REPLACED DURING AUTO UPGRADE
AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.

----------------------------------------------------------------
*/
#ui-datepicker-div {
  display: none; }

.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  position: absolute;
  left: -99999999px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.ui-helper-clearfix {
  display: inline-block; }

* html .ui-helper-clearfix {
  height: 1%; }

.ui-helper-clearfix {
  display: block; }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); }

.ui-state-disabled {
  cursor: default !important; }

.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

.ui-tabs {
  padding: .2em;
  zoom: 1; }

.ui-tabs[style] {
  border: 1px solid #C2D7EF !important;
  margin: 6px 0 0 !important;
  swidth: 438px !important; }

.ui-tabs .ui-tabs-nav {
  list-style: none;
  position: relative;
  padding: .2em .2em 0 0; }

.ui-tabs .ui-tabs-nav li {
  position: relative;
  float: left;
  border-bottom-width: 0 !important;
  margin: 0 .2em -1px 0;
  padding: 0;
  text-align: center; }

.ui-tabs .ui-tabs-nav li a {
  display: block;
  text-decoration: none;
  padding: .5em 1em;
  text-align: center;
  font-size: 12px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 1px;
  border-bottom-width: 0; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
  cursor: text; }

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  padding: 1em 1.4em;
  display: block;
  border-width: 0;
  background: none; }

.ui-tabs .ui-tabs-hide {
  display: none !important; }

/*
----------------------------------------------------------------

Gravity Forms Date Picker Styles
http: //www.gravityforms.com
updated: January 31, 2014 3:32 PM

Customized styles for the jQuery UI Datepicker 1.9.2
copyright 2012 jQuery Foundation and other contributors
Released under the MIT license.
http://jquery.org/license
some styles courtesty of http://www.hongkiat.com/

Gravity Forms is a Rocketgenius project
copyright 2008 - 2014 Rocketgenius Inc.
http: //www.rocketgenius.com

NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.

If you need to make extensive customizations,
copy the contents of this file to your theme
style sheet for editing. Then, go to the form
settings page & set the 'output CSS' option
to no.

----------------------------------------------------------------
*/
.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font: 9pt Arial, sans-serif;
  -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); }

.ui-datepicker a {
  text-decoration: none; }

.ui-datepicker table {
  width: 100%;
  border-collapse: collapse; }

.ui-datepicker-header {
  background-color: #666;
  /* set the header background color */
  color: #e0e0e0;
  font-weight: bold;
  -ms-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  -o-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  text-shadow: 1px -1px 0px #000;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  min-height: 30px !important;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #666; }

.ui-datepicker-title {
  text-align: center;
  padding-bottom: 4px; }

.ui-datepicker-title select {
  margin-top: 2%;
  -webkit-appearance: menulist;
  width: auto; }

.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAA8CAYAAACTiBHmAAAKQWlDQ1BJQ0MgUHJvZmlsZQAASA2dlndUU9kWh8+9N73QEiIgJfQaegkg0jtIFQRRiUmAUAKGhCZ2RAVGFBEpVmRUwAFHhyJjRRQLg4Ji1wnyEFDGwVFEReXdjGsJ7601896a/cdZ39nnt9fZZ+9917oAUPyCBMJ0WAGANKFYFO7rwVwSE8vE9wIYEAEOWAHA4WZmBEf4RALU/L09mZmoSMaz9u4ugGS72yy/UCZz1v9/kSI3QyQGAApF1TY8fiYX5QKUU7PFGTL/BMr0lSkyhjEyFqEJoqwi48SvbPan5iu7yZiXJuShGlnOGbw0noy7UN6aJeGjjAShXJgl4GejfAdlvVRJmgDl9yjT0/icTAAwFJlfzOcmoWyJMkUUGe6J8gIACJTEObxyDov5OWieAHimZ+SKBIlJYqYR15hp5ejIZvrxs1P5YjErlMNN4Yh4TM/0tAyOMBeAr2+WRQElWW2ZaJHtrRzt7VnW5mj5v9nfHn5T/T3IevtV8Sbsz55BjJ5Z32zsrC+9FgD2JFqbHbO+lVUAtG0GQOXhrE/vIADyBQC03pzzHoZsXpLE4gwnC4vs7GxzAZ9rLivoN/ufgm/Kv4Y595nL7vtWO6YXP4EjSRUzZUXlpqemS0TMzAwOl89k/fcQ/+PAOWnNycMsnJ/AF/GF6FVR6JQJhIlou4U8gViQLmQKhH/V4X8YNicHGX6daxRodV8AfYU5ULhJB8hvPQBDIwMkbj96An3rWxAxCsi+vGitka9zjzJ6/uf6Hwtcim7hTEEiU+b2DI9kciWiLBmj34RswQISkAd0oAo0gS4wAixgDRyAM3AD3iAAhIBIEAOWAy5IAmlABLJBPtgACkEx2AF2g2pwANSBetAEToI2cAZcBFfADXALDIBHQAqGwUswAd6BaQiC8BAVokGqkBakD5lC1hAbWgh5Q0FQOBQDxUOJkBCSQPnQJqgYKoOqoUNQPfQjdBq6CF2D+qAH0CA0Bv0BfYQRmALTYQ3YALaA2bA7HAhHwsvgRHgVnAcXwNvhSrgWPg63whfhG/AALIVfwpMIQMgIA9FGWAgb8URCkFgkAREha5EipAKpRZqQDqQbuY1IkXHkAwaHoWGYGBbGGeOHWYzhYlZh1mJKMNWYY5hWTBfmNmYQM4H5gqVi1bGmWCesP3YJNhGbjS3EVmCPYFuwl7ED2GHsOxwOx8AZ4hxwfrgYXDJuNa4Etw/XjLuA68MN4SbxeLwq3hTvgg/Bc/BifCG+Cn8cfx7fjx/GvyeQCVoEa4IPIZYgJGwkVBAaCOcI/YQRwjRRgahPdCKGEHnEXGIpsY7YQbxJHCZOkxRJhiQXUiQpmbSBVElqIl0mPSa9IZPJOmRHchhZQF5PriSfIF8lD5I/UJQoJhRPShxFQtlOOUq5QHlAeUOlUg2obtRYqpi6nVpPvUR9Sn0vR5Mzl/OX48mtk6uRa5Xrl3slT5TXl3eXXy6fJ18hf0r+pvy4AlHBQMFTgaOwVqFG4bTCPYVJRZqilWKIYppiiWKD4jXFUSW8koGStxJPqUDpsNIlpSEaQtOledK4tE20Otpl2jAdRzek+9OT6cX0H+i99AllJWVb5SjlHOUa5bPKUgbCMGD4M1IZpYyTjLuMj/M05rnP48/bNq9pXv+8KZX5Km4qfJUilWaVAZWPqkxVb9UU1Z2qbapP1DBqJmphatlq+9Uuq43Pp893ns+dXzT/5PyH6rC6iXq4+mr1w+o96pMamhq+GhkaVRqXNMY1GZpumsma5ZrnNMe0aFoLtQRa5VrntV4wlZnuzFRmJbOLOaGtru2nLdE+pN2rPa1jqLNYZ6NOs84TXZIuWzdBt1y3U3dCT0svWC9fr1HvoT5Rn62fpL9Hv1t/ysDQINpgi0GbwaihiqG/YZ5ho+FjI6qRq9Eqo1qjO8Y4Y7ZxivE+41smsImdSZJJjclNU9jU3lRgus+0zwxr5mgmNKs1u8eisNxZWaxG1qA5wzzIfKN5m/krCz2LWIudFt0WXyztLFMt6ywfWSlZBVhttOqw+sPaxJprXWN9x4Zq42Ozzqbd5rWtqS3fdr/tfTuaXbDdFrtOu8/2DvYi+yb7MQc9h3iHvQ732HR2KLuEfdUR6+jhuM7xjOMHJ3snsdNJp9+dWc4pzg3OowsMF/AX1C0YctFx4bgccpEuZC6MX3hwodRV25XjWuv6zE3Xjed2xG3E3dg92f24+ysPSw+RR4vHlKeT5xrPC16Il69XkVevt5L3Yu9q76c+Oj6JPo0+E752vqt9L/hh/QL9dvrd89fw5/rX+08EOASsCegKpARGBFYHPgsyCRIFdQTDwQHBu4IfL9JfJFzUFgJC/EN2hTwJNQxdFfpzGC4sNKwm7Hm4VXh+eHcELWJFREPEu0iPyNLIR4uNFksWd0bJR8VF1UdNRXtFl0VLl1gsWbPkRoxajCCmPRYfGxV7JHZyqffS3UuH4+ziCuPuLjNclrPs2nK15anLz66QX8FZcSoeGx8d3xD/iRPCqeVMrvRfuXflBNeTu4f7kufGK+eN8V34ZfyRBJeEsoTRRJfEXYljSa5JFUnjAk9BteB1sl/ygeSplJCUoykzqdGpzWmEtPi000IlYYqwK10zPSe9L8M0ozBDuspp1e5VE6JA0ZFMKHNZZruYjv5M9UiMJJslg1kLs2qy3mdHZZ/KUcwR5vTkmuRuyx3J88n7fjVmNXd1Z752/ob8wTXuaw6thdauXNu5Tnddwbrh9b7rj20gbUjZ8MtGy41lG99uit7UUaBRsL5gaLPv5sZCuUJR4b0tzlsObMVsFWzt3WazrWrblyJe0fViy+KK4k8l3JLr31l9V/ndzPaE7b2l9qX7d+B2CHfc3em681iZYlle2dCu4F2t5czyovK3u1fsvlZhW3FgD2mPZI+0MqiyvUqvakfVp+qk6oEaj5rmvep7t+2d2sfb17/fbX/TAY0DxQc+HhQcvH/I91BrrUFtxWHc4azDz+ui6rq/Z39ff0TtSPGRz0eFR6XHwo911TvU1zeoN5Q2wo2SxrHjccdv/eD1Q3sTq+lQM6O5+AQ4ITnx4sf4H++eDDzZeYp9qukn/Z/2ttBailqh1tzWibakNml7THvf6YDTnR3OHS0/m/989Iz2mZqzymdLz5HOFZybOZ93fvJCxoXxi4kXhzpXdD66tOTSna6wrt7LgZevXvG5cqnbvfv8VZerZ645XTt9nX297Yb9jdYeu56WX+x+aem172296XCz/ZbjrY6+BX3n+l37L972un3ljv+dGwOLBvruLr57/17cPel93v3RB6kPXj/Mejj9aP1j7OOiJwpPKp6qP6391fjXZqm99Oyg12DPs4hnj4a4Qy//lfmvT8MFz6nPK0a0RupHrUfPjPmM3Xqx9MXwy4yX0+OFvyn+tveV0auffnf7vWdiycTwa9HrmT9K3qi+OfrW9m3nZOjk03dp76anit6rvj/2gf2h+2P0x5Hp7E/4T5WfjT93fAn88ngmbWbm3/eE8/syOll+AAAB3klEQVRYCe1XsUrEQBA1kkJICEGw9oqrrfwAwV+wT3mHHBwIB4K1kC+QtOltbcN9gE1iYxn8AItgKk/jTMjAZcmOu4sXRTYw7O3O7rzZN7vcW6dpmr1df/u7BsD4FkSLZUuXFl0uN9txHM7d83H37U/VZA1pX4EFvfRVO7hNmVGMLMveV6tVFYbhM4wtwDzyUSuL0dLIOrsIZVk2aEVRfCyXy8r3fQSbgR2ogDgtEs0UWio8Amy7qqr6TJLkLU3Tx7quz9HHxmGd3ekSQQhws9k8TafTk+9AjE4XJFZD4Nh13TMC5Fr2nogLMThQeAcWTyaTV9Ev66uCvECAewh+qxOcQJUKT5O5lqutUU04sCEfu5OhBSZjo+zEgmiVxtJl6dJiQGuyPV2WLi0GtCaPcrpYIUHiTiXtX/+PN6UL1T2q/LXKLqWKXrJ9VPMLVPeo8lHtEwjOl5nUIYCgep+hmkdVj+qelL4KCFt4CuB53kMURafz+dwPgkCbYiWQPM+PQFybvbIgU6WsOvUeA4Wo5rU/VkGK9wTqcAgI1wB2Cb72SQcCvH0iCzXsJaIFQis7sBvoXwDIMY7/OAiBbbcciFJNtoOZ/GbpMgk4tGaUnViQIeqlY5YuKTVDjv9D1xdysESNsEdXVAAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden; }

.ui-datepicker-prev {
  float: left;
  background-position: center -30px; }

.ui-datepicker-next {
  float: right;
  background-position: center 0px; }

.ui-datepicker thead {
  background: #f7f7f7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #f7f7f7 0%, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
  border-bottom: 1px solid #bbb; }

.ui-datepicker th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=0); }

.ui-datepicker tbody td {
  padding: 0;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb; }

.ui-datepicker tbody td:last-child {
  border-right: 0px; }

.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb; }

.ui-datepicker tbody tr:last-child {
  border-bottom: 0px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=1); }

.ui-datepicker-calendar .ui-state-default {
  transition: none !important;
  background: #ededed;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #ededed 0%, #dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 );
  -ms-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  -o-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5); }

.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7; }

.ui-datepicker-calendar .ui-state-active {
  background: #FFF2AA;
  /* set the active date background color */
  border: 1px solid #c19163;
  /* set the active date border color */
  color: #666;
  /* set the active date font color */
  -ms-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  text-shadow: 0px 1px 0px #FFF;
  filter: dropshadow(color=#FFF, offx=0, offy=1);
  position: relative;
  margin: -1px; }

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3; }

.ui-datepicker-calendar th {
  background: none; }

.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0; }

.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0; }

.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0; }

td.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7; }

table.ui-datepicker-calendar {
  margin: 0 0 0 0 !important; }

body div#ui-datepicker-div[style] {
  z-index: 9999 !important; }

/* enhanced UI/select styles updated in v.1.8.12 -----------------------------------------------------------------*/
.gform_wrapper .chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.gform_wrapper .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.gform_wrapper .chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.gform_wrapper .chosen-container a {
  cursor: pointer; }

.gform_wrapper .chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.gform_wrapper .chosen-container-single .chosen-default {
  color: #999; }

.gform_wrapper .chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.gform_wrapper .chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.gform_wrapper .chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../../../plugins/gravityforms/images/chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px; }

.gform_wrapper .chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.gform_wrapper .chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../../plugins/gravityforms/images/chosen-sprite.png) no-repeat 0 2px; }

.gform_wrapper .chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.gform_wrapper .chosen-container-single .chosen-search input[type=text] {
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: #fff url(../../../plugins/gravityforms/images/chosen-sprite.png) no-repeat 100% -20px;
  background: url(../../../plugins/gravityforms/images/chosen-sprite.png) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.gform_wrapper .chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.gform_wrapper .chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

.gform_wrapper .chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.gform_wrapper .chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none; }

.gform_wrapper .chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.gform_wrapper .chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.gform_wrapper .chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.gform_wrapper .chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4; }

.gform_wrapper .chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default; }

.gform_wrapper .chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.gform_wrapper .chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

.gform_wrapper .chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text; }

.gform_wrapper .chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 5px;
  height: 15px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field .default {
  color: #999; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px !important;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-clip: padding-box;
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../../../plugins/gravityforms/images/chosen-sprite.png) -42px 1px no-repeat;
  font-size: 1px; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.gform_wrapper .chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

.gform_wrapper .chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset; }

.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: 0;
  background: transparent; }

.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.gform_wrapper .chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.gform_wrapper .chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #111 !important; }

.gform_wrapper .chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.gform_wrapper .chosen-disabled .chosen-single {
  cursor: default; }

.gform_wrapper .chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

.gform_wrapper .chosen-rtl {
  text-align: right; }

.gform_wrapper .chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.gform_wrapper .chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.gform_wrapper .chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.gform_wrapper .chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.gform_wrapper .chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.gform_wrapper .chosen-rtl .chosen-choices li {
  float: right; }

.gform_wrapper .chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl; }

.gform_wrapper .chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.gform_wrapper .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.gform_wrapper .chosen-rtl.chosen-container-single-nosearch .chosen-search.gform_wrapper .chosen-rtl .chosen-drop {
  left: 9999px; }

.gform_wrapper .chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.gform_wrapper .chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.gform_wrapper .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: 0; }

.gform_wrapper .chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: #fff url(../../../plugins/gravityforms/images/chosen-sprite.png) no-repeat -30px -20px;
  background: url(../../../plugins/gravityforms/images/chosen-sprite.png) no-repeat -30px -20px;
  direction: rtl; }

.gform_wrapper .chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.gform_wrapper .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gform_wrapper .chosen-rtl .chosen-search input[type=text].gform_wrapper .chosen-container-single .chosen-single abbr.gform_wrapper .chosen-container-single .chosen-single div b.gform_wrapper .chosen-container-single .chosen-search input[type=text].gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close.gform_wrapper .chosen-container .chosen-results-scroll-down span.gform_wrapper .chosen-container .chosen-results-scroll-up span {
    background-image: url(../../../plugins/gravityforms/images/chosen-sprite@2x.png) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

/* iCheck plugin Minimal skin, black
----------------------------------- */
.icheckbox_minimal,
.iradio_minimal {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  background: url("../../revtrac/images/icheck.png?v=1") no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_minimal {
  background-position: 0 0; }

.icheckbox_minimal.hover {
  background-position: -27px 0; }

.icheckbox_minimal.checked {
  background-position: -54px 0; }

.icheckbox_minimal.disabled {
  opacity: 0.5;
  cursor: default; }

.iradio_minimal {
  background-position: -81px 0; }

.iradio_minimal.hover {
  background-position: -108px 0; }

.iradio_minimal.checked {
  background-position: -135px 0; }

.iradio_minimal.disabled {
  opacity: 0.5;
  cursor: default; }

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icheckbox_minimal,
  .iradio_minimal {
    background-image: url("../images/icheck@2x.png");
    background-size: 160px 25px; } }

.customSelect {
  display: block;
  max-width: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #EEEFF1;
  color: #1E396B;
  padding: 8px 15px;
  height: 50px;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  cursor: default;
  border-radius: 4px;
  box-shadow: none;
  -webkit-appearance: none;
  padding-top: 12px;
  width: 100% !important; }
  .customSelect.placeholder {
    color: #86A0C2; }
  .customSelect:focus {
    outline: none;
    border-color: #8F99AB;
    box-shadow: none; }
  .customSelect:hover {
    cursor: text; }
  .customSelect.changed {
    background-color: #fff; }

.customSelect.customSelectHover {
  /* Styles for when the select box is hovered */ }

.customSelect.customSelectOpen {
  /* Styles for when the select box is open */ }

.customSelect.customSelectFocus {
  /* Styles for when the select box is in focus */
  outline: none;
  border-color: #8F99AB;
  box-shadow: none; }

.customSelect.customSelectDisabledOption {
  /* Styles for when the selected item is a disabled one */ }

.customSelect.customSelectDisabled {
  /* Styles for when the select box itself is disabled */ }

.customSelectInner {
  background-image: none;
  padding-right: 30px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  pointer-events: none; }
  .customSelectInner:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'rsc-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 9px;
    content: "\e900";
    color: #8F99AB;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 40px 0 0;
  background-color: #FFF;
  will-change: background-color, padding;
  transition: background-color 0.3s, padding 0.3s;
  font-size: 14px; }
  .header,
  .header a:not(.btn) {
    color: #8F99AB; }
  .header:after {
    display: block;
    content: "";
    overflow: hidden;
    height: 20px;
    pointer-events: none !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    background: linear-gradient(to bottom, rgba(35, 31, 32, 0.05) 0%, rgba(35, 31, 32, 0) 90%);
    opacity: 0;
    will-change: transition;
    transition: opacity 0.3s; }
  .header > .wrap:after {
    content: "";
    display: table;
    clear: both; }
  .header #menu_toggle {
    float: right;
    vertical-align: middle;
    display: none; }
    .header #menu_toggle, .header #menu_toggle .ico {
      color: #1E396B; }
    .header #menu_toggle .ico--close {
      display: none;
      right: 5px; }
  .header #search_toggle:after {
    content: "";
    display: table;
    clear: both; }
  @media only screen and (min-width: 799px) {
    .header #search_toggle .ico {
      margin-left: 0; } }
  @media only screen and (max-width: 798px) {
    .header #search_toggle {
      text-align: left;
      font-size: 16px;
      padding: 0 0 6px; }
      .header #search_toggle .ico {
        float: right;
        vertical-align: middle; }
      .header #search_toggle, .header #search_toggle .ico, .header #search_toggle .ico:before {
        color: #86A0C2; } }
  .header .logo,
  .header .navbar {
    display: inline-block; }
  .header .logo {
    width: 190px;
    height: 51px;
    vertical-align: middle;
    /*
		.sprite {
			position: absolute;
			left: 0;
			top: 0;
			will-change: opacity;
			transition: opacity $transition-duration;
		}
		*/ }
    .header .logo a {
      display: block;
      position: relative; }
    .header .logo .logo__full {
      opacity: 1; }
    .header .logo .logo__symbol {
      opacity: 0; }
  .header .navbar {
    text-align: right;
    width: calc(100% - 200px); }
  .header .navbar > .nav .nav,
  .header .navbar > .nav .nav__content {
    display: none; }
  .header .navbar > .nav li:last-child {
    margin-left: 20px; }
  .header .navbar > .nav li > a {
    text-decoration: none; }
  .header .navbar > .nav > li > a .ico {
    color: #1E396B; }
  .header .navbar > .nav > li > a.btn--primary {
    padding-left: 20px;
    padding-right: 20px; }
  .header .navbar > .nav > li > a:not(.btn) {
    color: #1E396B;
    font-weight: 700;
    padding: 10px 18px 30px;
    position: relative; }
    .header .navbar > .nav > li > a:not(.btn):after {
      content: "";
      font-size: 0;
      line-height: 0;
      position: absolute;
      left: 50%;
      width: 100%;
      bottom: 0;
      height: 4px;
      background-color: rgba(244, 124, 0, 0);
      transform: translateY(-10px) translateX(-50%);
      pointer-events: none;
      -webkit-transform-style: preserve-3d;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transition: background-color 0.3s, transform 0.3s, width 0.3s; }
    .header .navbar > .nav > li > a:not(.btn):hover:after, .header .navbar > .nav > li > a:not(.btn):focus:after, .header .navbar > .nav > li > a:not(.btn):active:after, .header .navbar > .nav > li > a:not(.btn).hover:after, .header .navbar > .nav > li > a:not(.btn).current:after, .header .navbar > .nav > li > a:not(.btn).current-parent:after, .header .navbar > .nav > li > a:not(.btn).active:after {
      background-color: #f47c00;
      transform: translateY(0) translateX(-50%);
      width: 100%; }

.nav__content a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  display: inline;
  position: relative; }
  .nav__content a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    content: "";
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 1px;
    display: block;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: -2px;
    right: 0;
    will-change: width, background-color;
    transition: width 0.3s, background-color 0.3s;
    transform: translateX(-50%);
    background-color: rgba(244, 124, 0, 0); }
  .nav__content a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .nav__content a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .nav__content a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
    width: 100%;
    background-color: #f47c00; }

.header-dropdown {
  perspective: 900px;
  pointer-events: none;
  position: fixed;
  top: 106px;
  right: 0;
  left: 0;
  z-index: 92; }

.header-dropdown__inner {
  background-color: #fff;
  opacity: 0;
  border-top: 1px solid #f1f1f3;
  will-change: opacity, transform, top;
  transition: opacity 0.3s, transform 0.3s, top 0.3s;
  transition-delay: 0s;
  transform: translateY(40px) rotateX(-40deg) scale(0.9);
  min-height: 310px;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .header-dropdown__inner,
  .header-dropdown__inner .grid__item {
    font-size: 14px; }
  .header-dropdown__inner,
  .header-dropdown__inner a:not(.btn) {
    color: #8F99AB; }
  .header-dropdown__inner:after {
    display: block;
    content: "";
    overflow: hidden;
    height: 20px;
    pointer-events: none !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    background-color: transparent;
    background: linear-gradient(to bottom, rgba(35, 31, 32, 0.05) 0%, rgba(35, 31, 32, 0) 90%); }
  .header-dropdown__inner .nav__products {
    width: 700px;
    max-width: 100%; }
    .header-dropdown__inner .nav__products:after {
      content: "";
      display: table;
      clear: both; }
    .header-dropdown__inner .nav__products li {
      width: 50%;
      float: left; }
      .header-dropdown__inner .nav__products li:not(:first-child) {
        border-left: 1px solid #f1f1f3; }
    .header-dropdown__inner .nav__products a {
      display: block;
      padding: 50px 40px 20px;
      position: relative;
      text-align: center;
      min-height: 310px; }
      .header-dropdown__inner .nav__products a .sprite, .header-dropdown__inner .nav__products a .ginput_card_security_code_icon, .header-dropdown__inner .nav__products a
      .gform_card_icon {
        display: block;
        margin: 0 auto 20px; }
      .header-dropdown__inner .nav__products a:after {
        content: "";
        font-size: 0;
        line-height: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 4px;
        background-color: rgba(244, 124, 0, 0);
        pointer-events: none;
        -webkit-transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: background-color 0.3s; }
      .header-dropdown__inner .nav__products a:hover:after, .header-dropdown__inner .nav__products a:focus:after, .header-dropdown__inner .nav__products a:active:after {
        background-color: #f47c00; }
  .header-dropdown__inner .nav__content {
    width: 360px;
    padding: 40px 40px 20px 0;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 300px;
    height: 310px;
    position: relative;
    width: 400px;
    padding-right: 100px;
    /*
		p {
			font-size: $base-font-size - 1;
		}
		*/ }
  .header-dropdown__inner .nav__items {
    min-width: 280px;
    max-width: 360px; }
  .header-dropdown__inner .nav__items {
    min-height: 240px;
    border-left: 1px solid #f1f1f3;
    padding-left: 50px;
    padding-top: 40px;
    padding-bottom: 10px; }
    .header-dropdown__inner .nav__items li:last-child {
      margin-bottom: 40px; }
    .header-dropdown__inner .nav__items li.nav__title-link {
      margin-top: 10px; }
      .header-dropdown__inner .nav__items li.nav__title-link > a {
        font-weight: 700;
        color: #f47c00; }
        .header-dropdown__inner .nav__items li.nav__title-link > a:focus, .header-dropdown__inner .nav__items li.nav__title-link > a:active, .header-dropdown__inner .nav__items li.nav__title-link > a.active, .header-dropdown__inner .nav__items li.nav__title-link > a.current, .header-dropdown__inner .nav__items li.nav__title-link > a.current-parent, .header-dropdown__inner .nav__items li.nav__title-link > a:hover {
          color: #1E396B; }
          .header-dropdown__inner .nav__items li.nav__title-link > a:focus:after, .header-dropdown__inner .nav__items li.nav__title-link > a:active:after, .header-dropdown__inner .nav__items li.nav__title-link > a.active:after, .header-dropdown__inner .nav__items li.nav__title-link > a.current:after, .header-dropdown__inner .nav__items li.nav__title-link > a.current-parent:after, .header-dropdown__inner .nav__items li.nav__title-link > a:hover:after {
            color: #1E396B; }
      .header-dropdown__inner .nav__items li.nav__title-link > a:after {
        color: #f47c00; }
  .header-dropdown__inner .nav__items a {
    text-decoration: none;
    padding: 4px 20px 4px 0;
    display: block;
    position: relative; }
    .header-dropdown__inner .nav__items a:after {
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'rsc-icons' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "\e902";
      font-size: 8px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }
    .header-dropdown__inner .nav__items a:focus, .header-dropdown__inner .nav__items a:active, .header-dropdown__inner .nav__items a.active, .header-dropdown__inner .nav__items a.current, .header-dropdown__inner .nav__items a.current-parent, .header-dropdown__inner .nav__items a:hover {
      color: #f47c00; }

.header-dropdown__inner .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center; }

.site-overlay {
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 80;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.6s; }

html.scrolled .header,
html.menu-open .header {
  background-color: white; }

html.scrolled .header {
  padding-top: 20px;
  /*
		.logo {
			.logo__full {
				opacity: 0;
			}
			.logo__symbol {
				opacity: 1;
			}
		}
		*/ }
  html.scrolled .header:after {
    opacity: 1; }

html.scrolled .header-dropdown {
  top: 86px; }

html.menu-open .site-overlay {
  background-color: rgba(255, 255, 255, 0.7); }

@media only screen and (min-width: 799px) {
  html.menu-open .header-dropdown {
    pointer-events: all; }
  html.menu-open .header-dropdown__inner {
    opacity: 1;
    transition-delay: 0.3s;
    transform: translateY(0) rotateX(0) scale(1); } }

html.menu-open #menu_toggle .ico--close {
  display: inline-block; }

html.menu-open #menu_toggle .ico--menu {
  display: none; }

@media (min-width: 799px) and (max-width: 1075px) {
  .header .navbar > .nav > li > a:not(.btn) {
    padding-right: 10px;
    padding-left: 10px; }
  .header .navbar > .nav > li > a.btn:not(.btn--trans) {
    padding-right: 20px;
    padding-left: 20px; }
  .header .navbar > .nav li:last-child {
    margin-left: 10px; } }

@media (min-width: 799px) and (max-width: 880px) {
  .header {
    padding-top: 20px; }
    .header .logo {
      display: block;
      margin: 0 auto 20px; }
    .header .navbar {
      width: 100%;
      text-align: center; }
  .header-dropdown {
    top: 156px; }
  html.scrolled .header {
    /*
			.logo {
				.logo__full {
					opacity: 1;
				}
				.logo__symbol {
					opacity: 0;
				}
			}
			*/ }
  html.scrolled .header-dropdown {
    top: 156px; } }

@media only screen and (max-width: 798px) {
  .header .navbar > .nav li.nav__title-link {
    margin-top: 10px; }
    .header .navbar > .nav li.nav__title-link > a {
      font-weight: 700;
      color: #f47c00; }
      .header .navbar > .nav li.nav__title-link > a:focus, .header .navbar > .nav li.nav__title-link > a:active, .header .navbar > .nav li.nav__title-link > a.active, .header .navbar > .nav li.nav__title-link > a.current, .header .navbar > .nav li.nav__title-link > a.current-parent, .header .navbar > .nav li.nav__title-link > a:hover {
        color: #1E396B; }
        .header .navbar > .nav li.nav__title-link > a:focus:after, .header .navbar > .nav li.nav__title-link > a:active:after, .header .navbar > .nav li.nav__title-link > a.active:after, .header .navbar > .nav li.nav__title-link > a.current:after, .header .navbar > .nav li.nav__title-link > a.current-parent:after, .header .navbar > .nav li.nav__title-link > a:hover:after {
          color: #1E396B; }
      .header .navbar > .nav li.nav__title-link > a:after {
        color: #f47c00; }
  .header {
    border-bottom: 1px solid rgba(238, 239, 241, 0); }
    .header #menu_toggle {
      display: inline-block;
      position: relative; }
    .header .navbar {
      pointer-events: none;
      display: block;
      position: fixed;
      left: 0;
      background: #fff;
      right: 0;
      width: 100%;
      bottom: 0;
      transform: translateX(100%);
      transition: transform 0.3s;
      transition-delay: 0s;
      text-align: left;
      padding: 10px 40px 20px; }
      .header .navbar:before {
        display: block;
        content: "";
        overflow: hidden;
        height: 20px;
        pointer-events: none !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        background-color: transparent;
        background: linear-gradient(to bottom, rgba(35, 31, 32, 0.05) 0%, rgba(35, 31, 32, 0) 90%); }
      .header .navbar .nav__products li a {
        text-align: center; }
        .header .navbar .nav__products li a .sprite, .header .navbar .nav__products li a .ginput_card_security_code_icon, .header .navbar .nav__products li a
        .gform_card_icon {
          display: block;
          margin: 0 auto 10px; }
        .header .navbar .nav__products li a span:not(.sprite):not(.ginput_card_security_code_icon):not(
        .gform_card_icon) {
          width: 380px;
          max-width: 100%;
          display: inline-block; }
      .header .navbar .nav__products li:not(:last-child) {
        margin-bottom: 30px !important; }
      .header .navbar .nav li,
      .header .navbar .nav li a {
        display: block; }
      .header .navbar > .nav li:last-child {
        margin-left: 0; }
      .header .navbar > .nav > li {
        margin-top: 30px; }
        .header .navbar > .nav > li > a:not(.btn) {
          border-bottom: 1px solid #EEEFF1;
          padding: 0 0 6px;
          font-size: 16px;
          position: relative; }
          .header .navbar > .nav > li > a:not(.btn):before {
            /* use !important to prevent issues with browser extensions that change fonts */
            font-family: 'rsc-icons' !important;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            /* Better Font Rendering =========== */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\e900";
            font-size: 7px;
            position: absolute;
            right: 0;
            bottom: 15px;
            color: #86A0C2;
            transition: transform 0.3s; }
          .header .navbar > .nav > li > a:not(.btn):after {
            display: none !important; }
          .header .navbar > .nav > li > a:not(.btn).active:before {
            transform: rotate(180deg); }
        .header .navbar > .nav > li .nav:not(.nav__products) li a {
          font-size: 15px;
          text-decoration: none;
          padding-right: 20px;
          display: block;
          position: relative; }
          .header .navbar > .nav > li .nav:not(.nav__products) li a:after {
            /* use !important to prevent issues with browser extensions that change fonts */
            font-family: 'rsc-icons' !important;
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            /* Better Font Rendering =========== */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            content: "\e902";
            font-size: 8px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%); }
          .header .navbar > .nav > li .nav:not(.nav__products) li a:focus, .header .navbar > .nav > li .nav:not(.nav__products) li a:active, .header .navbar > .nav > li .nav:not(.nav__products) li a:hover {
            color: #f47c00; }
        .header .navbar > .nav > li ul {
          margin-top: 20px; }
          .header .navbar > .nav > li ul li:not(:last-child) {
            margin-bottom: 15px; }
  html.menu-open .header,
  html.scrolled .header {
    border-bottom-color: #eeeff1; }
  html.menu-open .header {
    /*
			.logo {
				.logo__full {
					opacity: 0;
				}
				.logo__symbol {
					opacity: 1;
				}
			}
			*/ }
    html.menu-open .header .navbar {
      pointer-events: all;
      transform: translateX(0);
      transition-delay: 0.3s;
      overflow-y: scroll; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px; }
    .header #menu_toggle {
      top: 12px; }
    .header .navbar {
      top: 92px; } }

@media only screen and (max-width: 588px) {
  .header {
    padding-top: 20px;
    padding-bottom: 10px; }
    .header #menu_toggle {
      top: 2px; }
    .header .navbar {
      top: 68px; }
    .header .logo,
    .header .logo .sprite,
    .header .logo .ginput_card_security_code_icon,
    .header .logo
    .gform_card_icon {
      width: 143px;
      height: 38px;
      background-position: 0 50%; }
    .header .logo .logo__symbol {
      width: 50px;
      height: 30px; } }

.footer {
  padding: 50px 0 100px; }
  .footer,
  .footer .grid__item {
    font-size: 14px; }
  .footer,
  .footer a:not(.btn) {
    color: #8F99AB; }
  .footer a:not(.btn) {
    display: inline-block; }
    .footer a:not(.btn):hover, .footer a:not(.btn):focus, .footer a:not(.btn):active {
      color: #f47c00; }

.footer__nav a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.footer__contact a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.footer__copyright a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  display: inline;
  position: relative; }
  .footer__nav a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .footer__contact a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .footer__copyright a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    content: "";
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 1px;
    display: block;
    overflow: hidden;
    position: absolute;
    left: 50%;
    bottom: -2px;
    right: 0;
    will-change: width, background-color;
    transition: width 0.3s, background-color 0.3s;
    transform: translateX(-50%);
    background-color: rgba(244, 124, 0, 0); }
  .footer__nav a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .footer__nav a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .footer__nav a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
  .footer__contact a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
  .footer__contact a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
  .footer__contact a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
  .footer__copyright a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
  .footer__copyright a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
  .footer__copyright a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
    width: 100%;
    background-color: #f47c00; }

.nav--social .ico {
  font-size: 13px;
  top: -1px; }

.nav--social li:not(:last-child) {
  margin-right: 10px; }

.nav--social a {
  transition: all 0.3s;
  position: relative;
  display: block; }
  .nav--social a:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #f47c00;
    width: 0;
    height: 0;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s; }
  .nav--social a .ico, .nav--social a .fa {
    transition-duration: 0.3s; }
  .nav--social a:hover,
  .nav--social a:hover .ico,
  .nav--social a:hover .fa, .nav--social a:active,
  .nav--social a:active .ico,
  .nav--social a:active .fa, .nav--social a:focus,
  .nav--social a:focus .ico,
  .nav--social a:focus .fa {
    color: #fff; }
  .nav--social a:hover .ico,
  .nav--social a:hover .fa, .nav--social a:active .ico,
  .nav--social a:active .fa, .nav--social a:focus .ico,
  .nav--social a:focus .fa {
    transition-duration: 0s; }
  .nav--social a:hover:before, .nav--social a:active:before, .nav--social a:focus:before {
    opacity: 1;
    width: 110%;
    height: 110%; }

.footer__content {
  padding-right: 10px; }

.footer__contact {
  padding-top: 66px; }
  .footer__contact h1, .footer__contact h2, .footer__contact h3, .footer__contact h4, .footer__contact h5, .footer__contact h6 {
    color: #1E396B;
    font-size: 14px;
    margin-bottom: 15px; }
  .footer__contact p {
    margin-bottom: 0; }

.footer__copyright {
  font-size: 12px;
  line-height: 1.8; }

.footer__nav {
  padding-top: 60px; }
  .footer__nav > .nav:after {
    content: "";
    display: table;
    clear: both; }
  .footer__nav > .nav > li {
    float: left;
    vertical-align: top;
    width: 25%;
    margin-bottom: 20px; }
    @media only screen and (max-width: 588px) {
      .footer__nav > .nav > li {
        width: 100%; } }
    .footer__nav > .nav > li > a {
      color: #1E396B;
      font-weight: 700; }
    .footer__nav > .nav > li .nav > li {
      margin-top: 10px; }

.footer__copyright {
  margin-top: 50px; }

@media only screen and (max-width: 588px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 20px; }
  .footer__nav {
    display: none; } }

.secondary-nav {
  background-color: #fff;
  border-top: 1px solid rgba(238, 239, 241, 0);
  border-bottom: 1px solid #EEEFF1;
  transition: border-color 0.3s; }
  .secondary-nav:after {
    display: block;
    content: "";
    overflow: hidden;
    height: 20px;
    pointer-events: none !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s;
    background-color: transparent;
    background: linear-gradient(to bottom, rgba(35, 31, 32, 0.05) 0%, rgba(35, 31, 32, 0) 90%); }
  .secondary-nav .wrap:before,
  .secondary-nav .wrap:after,
  .secondary-nav .secondary-nav__scroll-left,
  .secondary-nav .secondary-nav__scroll-right {
    transition: opacity 0.3s; }
  .secondary-nav .wrap {
    overflow: hidden; }
    .secondary-nav .wrap:before, .secondary-nav .wrap:after {
      content: "";
      display: block;
      width: 60px;
      height: 100%;
      position: absolute;
      top: 0;
      z-index: 1; }
      @media (max-width: 1180px) {
        .secondary-nav .wrap:before, .secondary-nav .wrap:after {
          width: 80px; } }
    .secondary-nav .wrap:before {
      left: 0;
      background: linear-gradient(to right, white 0%, white 40%, rgba(255, 255, 255, 0) 100%); }
    .secondary-nav .wrap:after {
      right: 0;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 60%, white 100%); }
  .secondary-nav .navbar {
    white-space: nowrap; }
  .secondary-nav .secondary-nav__scroll-left,
  .secondary-nav .secondary-nav__scroll-right {
    cursor: pointer;
    color: #8F99AB;
    font-size: 25px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; }
  .secondary-nav .secondary-nav__scroll-left {
    left: 0; }
    @media (max-width: 1180px) {
      .secondary-nav .secondary-nav__scroll-left {
        left: 10px; } }
  .secondary-nav .secondary-nav__scroll-right {
    right: 0; }
    @media (max-width: 1180px) {
      .secondary-nav .secondary-nav__scroll-right {
        right: 10px; } }
  .secondary-nav .nav li:not(:first-child) {
    margin-left: 40px; }
  .secondary-nav .nav li:last-child {
    margin-right: 80px; }
  .secondary-nav .nav li > span {
    font-weight: 400;
    color: #8F99AB;
    font-style: italic; }
  .secondary-nav .nav a {
    font-weight: 700;
    padding: 30px 0;
    position: relative;
    color: #1E396B;
    font-size: 14px; }
    .secondary-nav .nav a:after {
      content: "";
      font-size: 0;
      line-height: 0;
      position: absolute;
      left: 50%;
      width: 100%;
      bottom: 0;
      height: 4px;
      background-color: rgba(244, 124, 0, 0);
      transform: translateY(-10px) translateX(-50%);
      pointer-events: none;
      -webkit-transform-style: preserve-3d;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transition: background-color 0.3s, transform 0.3s, width 0.3s; }
    .secondary-nav .nav a:hover:after, .secondary-nav .nav a:focus:after, .secondary-nav .nav a:active:after, .secondary-nav .nav a.hover:after, .secondary-nav .nav a.active:after {
      background-color: #f47c00;
      transform: translateY(0) translateX(-50%);
      width: 100%; }
  .secondary-nav .nav li.nav__sub a {
    font-weight: 400;
    /*
				&:before {
					@include ico;
					content: unicode($ico-chevron-right);
					color: $secondary-color-light;
					position: relative;
					font-size: 10px;
					margin-right: $half-spacing;
				}
				*/ }
    .secondary-nav .nav li.nav__sub a:after {
      background-color: rgba(134, 160, 194, 0); }
    .secondary-nav .nav li.nav__sub a:hover:after, .secondary-nav .nav li.nav__sub a:focus:after, .secondary-nav .nav li.nav__sub a:active:after, .secondary-nav .nav li.nav__sub a.hover:after, .secondary-nav .nav li.nav__sub a.active:after {
      background-color: #86a0c2; }

.secondary-nav:not(.scrollable) .wrap:before,
.secondary-nav:not(.scrollable) .secondary-nav__scroll-left,
.secondary-nav:not(.scrollable) .wrap:after,
.secondary-nav:not(.scrollable) .secondary-nav__scroll-right {
  pointer-events: none !important;
  opacity: 0 !important; }

.secondary-nav:not(.scrolled) .wrap:before,
.secondary-nav:not(.scrolled) .secondary-nav__scroll-left {
  pointer-events: none;
  opacity: 0; }

.secondary-nav:not(.scrolled) .wrap:after,
.secondary-nav:not(.scrolled) .secondary-nav__scroll-right {
  pointer-events: all;
  opacity: 1; }

.secondary-nav.scrolled .wrap:before,
.secondary-nav.scrolled .secondary-nav__scroll-left {
  pointer-events: all;
  opacity: 1; }

.secondary-nav.scrolled .wrap:after,
.secondary-nav.scrolled .secondary-nav__scroll-right {
  pointer-events: none;
  opacity: 0; }

.sticky-wrapper .secondary-nav {
  z-index: 91 !important; }

.sticky-wrapper.is-sticky .secondary-nav {
  border-top-color: #eeeff1; }
  .sticky-wrapper.is-sticky .secondary-nav:after {
    opacity: 1; }

.block__header {
  margin-bottom: 20px; }

.block__footer {
  padding-top: 20px; }
  .block__footer a.btn {
    font-size: 13px; }

.block__media {
  position: relative; }
  .block__media figure {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%; }
    .block__media figure img {
      opacity: 0; }
  .block__media figcaption {
    display: block;
    position: absolute;
    right: -50%;
    bottom: 20%;
    color: #fff;
    transform: rotate(-90deg);
    transform-origin: 0 100%;
    text-align: left;
    width: 60%; }

.block__media-button,
.block__media-link {
  display: block;
  position: absolute;
  z-index: 2;
  transition: all 0.3s;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 0; }
  .block__media-button,
  .block__media-button .ico,
  .block__media-button .fa,
  .block__media-link,
  .block__media-link .ico,
  .block__media-link .fa {
    color: #fff; }
  .block__media-button .ico,
  .block__media-button .fa,
  .block__media-link .ico,
  .block__media-link .fa {
    display: block;
    transition: all 0.3s; }
  .block__media-button:hover .ico,
  .block__media-button:hover .fa, .block__media-button:focus .ico,
  .block__media-button:focus .fa, .block__media-button:active .ico,
  .block__media-button:active .fa,
  .block__media-link:hover .ico,
  .block__media-link:hover .fa,
  .block__media-link:focus .ico,
  .block__media-link:focus .fa,
  .block__media-link:active .ico,
  .block__media-link:active .fa {
    transform: scale(1.2);
    color: #f47c00; }
  .block__media-button:hover + figure img, .block__media-button:focus + figure img, .block__media-button:active + figure img,
  .block__media-link:hover + figure img,
  .block__media-link:focus + figure img,
  .block__media-link:active + figure img {
    visibility: visible;
    transform: scale(1.2);
    opacity: 0.7;
    transition-duration: 1s; }
  .block__media-button + figure,
  .block__media-link + figure {
    z-index: 1;
    background-image: none !important;
    position: relative;
    overflow: hidden; }
    .block__media-button + figure img,
    .block__media-link + figure img {
      display: block;
      -webkit-transform-style: preserve-3d;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transition: all 0.6s;
      transform-origin: 50%;
      position: relative;
      left: 0;
      top: 0;
      width: auto;
      height: auto;
      min-height: 0;
      max-width: 100%;
      min-width: 0;
      opacity: 1; }

.block__media-link {
  width: 100%;
  height: 100%;
  font-size: 40px;
  box-shadow: inset 0 0 0 0 #f47c00; }
  .block__media-link .ico,
  .block__media-link .fa {
    display: inline-block;
    position: absolute;
    top: 50% !important;
    left: 50%;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: rgba(244, 124, 0, 0);
    transform: translate(-50%, -50%) scale(0.7); }
  .block__media-link:hover, .block__media-link:focus, .block__media-link:active {
    box-shadow: inset 0 0 0 5px #f47c00; }
    .block__media-link:hover .ico,
    .block__media-link:hover .fa, .block__media-link:focus .ico,
    .block__media-link:focus .fa, .block__media-link:active .ico,
    .block__media-link:active .fa {
      color: #f47c00;
      transform: translate(-50%, -50%) scale(1); }

.block__media-button {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px 0 rgba(35, 31, 32, 0.4);
  border-radius: 50%;
  font-size: 80px; }
  .block__media-button:hover, .block__media-button:focus, .block__media-button:active {
    box-shadow: 0 0 0 0 rgba(35, 31, 32, 0); }

.block.block--form--boxed {
  background-color: #FAFAFB;
  border: 1px solid #E5EBEF;
  padding: 50px;
  color: #8F99AB; }
  .block.block--form--boxed .gform_title {
    color: #1E396B; }
  .block.block--form--boxed .gform_description {
    color: #8F99AB; }
  .block.block--form--boxed .gform_form.button-full-width .gform_footer input[type="submit"],
  .block.block--form--boxed .gform_form.button-full-width .gform_footer button[type="submit"] {
    width: 100%; }
  .block.block--form--boxed .gform_form:not(.button-full-width) .gform_footer {
    text-align: center; }
    .block.block--form--boxed .gform_form:not(.button-full-width) .gform_footer input[type="submit"],
    .block.block--form--boxed .gform_form:not(.button-full-width) .gform_footer button[type="submit"] {
      width: auto; }

.block.block--form.feed__block .form-fields > li:last-child, .block.block--form.feed__block .gform_fields > li:last-child,
.block.block--form.feed__block .gform_fields > li:last-child {
  margin-bottom: 20px; }

@media only screen and (max-width: 588px) {
  .block.block--form--boxed {
    padding: 20px; } }

.date-box {
  width: 100px;
  border: 1px solid #e5ebef;
  border-radius: 3px;
  display: block; }

.date-box__date {
  display: block;
  text-align: center;
  font-size: 40px;
  color: #1E396B;
  font-weight: 700;
  height: 70px;
  line-height: 70px; }

.date-box__month {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #1E396B;
  font-weight: 700;
  background-color: #EEEFF1;
  height: 40px;
  line-height: 40px; }

.block.block--event-snapshot {
  background-color: #fff;
  border: 1px solid #EEEFF1;
  width: 880px;
  max-width: 100%;
  margin: 0 auto -40px;
  border-radius: 4px;
  padding: 20px 30px;
  box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }
  .block.block--event-snapshot .block__meta {
    width: 190px;
    padding-right: 40px; }
  .block.block--event-snapshot .date-box {
    width: 100%; }
    .block.block--event-snapshot .date-box:after {
      content: "";
      display: table;
      clear: both; }
  .block.block--event-snapshot .date-box__date,
  .block.block--event-snapshot .date-box__month {
    float: left;
    width: 50%;
    height: 60px;
    line-height: 60px; }
  .block.block--event-snapshot .date-box__date {
    font-size: 30px; }
  .block.block--event-snapshot .date-box__month {
    font-size: 18px;
    background-color: #FAFAFB; }
  .block.block--event-snapshot .block__content {
    -ms-flex: 1;
    flex: 1; }
    .block.block--event-snapshot .block__content a {
      font-weight: 700; }
  .block.block--event-snapshot .block__footer {
    width: 160px;
    padding: 0;
    text-align: right; }
    .block.block--event-snapshot .block__footer img {
      display: inline-block; }

@media (max-width: 900px) {
  .block.block--event-snapshot {
    -ms-flex-align: start;
    align-items: flex-start;
    width: 90%; }
    .block.block--event-snapshot .block__content {
      padding-bottom: 20px; }
    .block.block--event-snapshot .block__footer {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      text-align: left;
      padding-left: 190px; } }

@media only screen and (max-width: 588px) {
  .block.block--event-snapshot {
    padding: 15px; }
    .block.block--event-snapshot .block__meta {
      width: 110px;
      padding-right: 20px; }
    .block.block--event-snapshot .date-box__date,
    .block.block--event-snapshot .date-box__month {
      float: none;
      width: 100%; }
    .block.block--event-snapshot .block__footer {
      padding-left: 110px; } }

.block.block--profile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }
  .block.block--profile .block__header {
    margin-bottom: 40px;
    -ms-flex: 1;
    flex: 1;
    padding-left: 20px; }
  .block.block--profile .block__content {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-left: 0; }
  .block.block--profile .block__media {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.1); }
    .block.block--profile .block__media figure {
      width: 100%;
      height: 100%;
      background-size: cover;
      border-radius: 50%;
      background-repeat: no-repeat;
      background-position: 50%; }
      .block.block--profile .block__media figure img {
        border: 0 !important;
        clip: rect(0 0 0 0) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important; }
  .block.block--profile .block__title,
  .block.block--profile .block__title a,
  .block.block--profile .block__subtitle,
  .block.block--profile .block__subtitle a {
    color: #1E396B; }
  .block.block--profile .block__title a:hover,
  .block.block--profile .block__title a:focus,
  .block.block--profile .block__title a:active,
  .block.block--profile .block__subtitle a:hover,
  .block.block--profile .block__subtitle a:focus,
  .block.block--profile .block__subtitle a:active {
    color: #f47c00; }
  .block.block--profile .block__title {
    margin-bottom: 0; }
  .block.block--profile .block__subtitle {
    padding-top: 0; }

.tabbed-content .block.block--profile .block__header {
  padding-left: 0;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-bottom: 20px; }

.tabbed-content .block.block--profile .block__media {
  margin-right: 20px; }

.tabbed-content .block.block--profile .block__content {
  -ms-flex-preferred-size: 0;
  flex-basis: 0; }

@media (max-width: 880px) {
  .block.block--profile {
    display: block; }
    .block.block--profile .block__header {
      margin-bottom: 20px; }
    .block.block--profile .block__content {
      padding-left: 0; }
    .block.block--profile .block__media {
      margin-bottom: 20px; } }

.row {
  background-color: #fff; }
  .row a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
    display: inline;
    position: relative; }
    .row a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
      content: "";
      font-size: 0;
      line-height: 0;
      width: 0;
      height: 1px;
      display: block;
      overflow: hidden;
      position: absolute;
      left: 50%;
      bottom: -2px;
      right: 0;
      will-change: width, background-color;
      transition: width 0.3s, background-color 0.3s;
      transform: translateX(-50%);
      background-color: rgba(244, 124, 0, 0); }
    .row a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .row a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .row a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
      width: 100%;
      background-color: #f47c00; }

.row__inner {
  padding: 80px 0; }

.row__header,
.row__footer,
.row.row--content .row__content,
.row.row--tabbed-content--default .tabbed-content__tabs__tab .block__content,
.row.row--form:not(.row--form--columns) .block--form .block__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: 80%; }

.row.row--content .row__content {
  min-height: 50px; }

.row__content.text--left ul.list-styled,
.row__content.text--left ol.list-styled {
  margin-left: 0;
  margin-right: auto; }

.row__content.text--center ul.list-styled,
.row__content.text--center ol.list-styled {
  margin-left: auto;
  margin-right: auto; }

.row__content.text--center ul.list-styled,
.row__content.text--center ol.list-styled {
  margin-left: auto;
  margin-right: 0; }

/*
.row.row--bordered {
	border-top: 1px solid $tertiary-color-light;
	border-bottom: 1px solid $tertiary-color-light;
}
*/
.row.row--gallery--slider .row__inner.wrap--wide .swiper-slide.wrap {
  padding-left: 130px;
  padding-right: 130px; }

.row .swiper-button-next,
.row .swiper-container-rtl .swiper-button-prev,
.row .swiper-button-prev,
.row .swiper-container-rtl .swiper-button-next {
  outline: none;
  background-image: none; }
  .row .swiper-button-next:after,
  .row .swiper-container-rtl .swiper-button-prev:after,
  .row .swiper-button-prev:after,
  .row .swiper-container-rtl .swiper-button-next:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'rsc-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 44px; }

.row .swiper-button-prev:after,
.row .swiper-container-rtl .swiper-button-next:after {
  content: "\e901"; }

.row .swiper-button-next:after,
.row .swiper-container-rtl .swiper-button-prev:after {
  content: "\e902"; }

.row .swiper-pagination-bullet-active {
  background: #1E396B; }

@media only screen and (max-width: 798px) {
  .row__header,
  .row__footer,
  .row.row--content .row__content,
  .row.row--tabbed-content--default .tabbed-content__tabs__tab .block__content,
  .row.row--form:not(.row--form--columns) .block--form .block__content {
    width: 100% !important; } }

.row.bg-primary .row__header,
.row.bg-primary .row__footer,
.row.bg-primary .row__content,
.row .row__inner.bg-primary .row__header,
.row .row__inner.bg-primary .row__footer,
.row .row__inner.bg-primary .row__content {
  color: #fff; }

.row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  color: #fac5c6; }
  .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    background-color: rgba(250, 197, 198, 0); }
  .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus, .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active, .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover,
  .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus,
  .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active,
  .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover {
    color: #fac5c6; }
    .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .row.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
    .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
    .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
    .row .row__inner.bg-primary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
      background-color: #fac5c6; }

.row.bg-primary.row--calculator .tabbed-content__nav a,
.row.bg-primary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a,
.row.bg-primary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a,
.row .row__inner.bg-primary.row--calculator .tabbed-content__nav a,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a {
  color: #1E396B !important; }

.row.bg-primary.row--calculator .tabbed-content__nav li.r-tabs-state-active a,
.row.bg-primary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
.row.bg-primary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-primary.row--calculator .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a {
  color: #fff !important; }

.row.bg-primary h1.first-line, .row.bg-primary h2.first-line, .row.bg-primary h3.first-line, .row.bg-primary h4.first-line, .row.bg-primary h5.first-line, .row.bg-primary h6.first-line, .row.bg-primary .h1.first-line, .row.bg-primary .h2.first-line, .row.bg-primary .h3.first-line, .row.bg-primary .h4.first-line, .row.bg-primary .h5.first-line, .row.bg-primary .h6.first-line,
.row .row__inner.bg-primary h1.first-line,
.row .row__inner.bg-primary h2.first-line,
.row .row__inner.bg-primary h3.first-line,
.row .row__inner.bg-primary h4.first-line,
.row .row__inner.bg-primary h5.first-line,
.row .row__inner.bg-primary h6.first-line,
.row .row__inner.bg-primary .h1.first-line,
.row .row__inner.bg-primary .h2.first-line,
.row .row__inner.bg-primary .h3.first-line,
.row .row__inner.bg-primary .h4.first-line,
.row .row__inner.bg-primary .h5.first-line,
.row .row__inner.bg-primary .h6.first-line {
  color: #fff; }

.row.bg-primary .row__media figcaption,
.row .row__inner.bg-primary .row__media figcaption {
  color: #fac5c6; }

.row.bg-primary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row.bg-primary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row.bg-primary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row.bg-primary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs {
  border-color: #ff9528; }

.row.bg-primary.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row.bg-primary.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle {
  color: #fff; }

.row.bg-primary.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row.bg-primary.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-primary.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle {
  color: #8F99AB; }

.row.bg-primary .block--form .gform_wrapper .form-btn,
.row .row__inner.bg-primary .block--form .gform_wrapper .form-btn {
  background-color: #1E396B; }
  .row.bg-primary .block--form .gform_wrapper .form-btn, .row.bg-primary .block--form .gform_wrapper .form-btn:focus, .row.bg-primary .block--form .gform_wrapper .form-btn:active, .row.bg-primary .block--form .gform_wrapper .form-btn:visited, .row.bg-primary .block--form .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:active,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:visited,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:hover {
    color: #fff; }
  .row.bg-primary .block--form .gform_wrapper .form-btn .ico,
  .row.bg-primary .block--form .gform_wrapper .form-btn .fa,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn .ico,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn .fa {
    color: #fff; }
  .row.bg-primary .block--form .gform_wrapper .form-btn:focus, .row.bg-primary .block--form .gform_wrapper .form-btn:hover, .row.bg-primary .block--form .gform_wrapper .form-btn:active,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-primary .block--form .gform_wrapper .form-btn:active {
    background-color: #132443; }

.row.bg-primary .block--form:not(.block--form--boxed) .gform_title,
.row .row__inner.bg-primary .block--form:not(.block--form--boxed) .gform_title {
  color: #1E396B; }

.row.bg-primary .block--form:not(.block--form--boxed) .gform_description,
.row .row__inner.bg-primary .block--form:not(.block--form--boxed) .gform_description {
  color: #fff; }

.row.bg-primary .block--form:not(.block--form--boxed) .validation_error,
.row .row__inner.bg-primary .block--form:not(.block--form--boxed) .validation_error {
  background-color: #fff;
  color: #F04E57; }

.row.bg-primary .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row.bg-primary .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row.bg-primary .block--form:not(.block--form--boxed) .gfield_error.text-input textarea,
.row .row__inner.bg-primary .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row .row__inner.bg-primary .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row .row__inner.bg-primary .block--form:not(.block--form--boxed) .gfield_error.text-input textarea {
  background-color: #fcdbdd; }

.row.bg-secondary .row__header,
.row.bg-secondary .row__footer,
.row.bg-secondary .row__content,
.row .row__inner.bg-secondary .row__header,
.row .row__inner.bg-secondary .row__footer,
.row .row__inner.bg-secondary .row__content {
  color: #fff; }

.row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  color: #a8bbd3; }
  .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    background-color: rgba(168, 187, 211, 0); }
  .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus, .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active, .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover,
  .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus,
  .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active,
  .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover {
    color: #a8bbd3; }
    .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .row.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
    .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
    .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
    .row .row__inner.bg-secondary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
      background-color: #a8bbd3; }

.row.bg-secondary .row__media figcaption,
.row .row__inner.bg-secondary .row__media figcaption {
  color: #a8bbd3; }

.row.bg-secondary h1, .row.bg-secondary h2, .row.bg-secondary h3, .row.bg-secondary h5, .row.bg-secondary h6, .row.bg-secondary .h1, .row.bg-secondary .h2, .row.bg-secondary .h3, .row.bg-secondary .h5, .row.bg-secondary .h6,
.row .row__inner.bg-secondary h1,
.row .row__inner.bg-secondary h2,
.row .row__inner.bg-secondary h3,
.row .row__inner.bg-secondary h5,
.row .row__inner.bg-secondary h6,
.row .row__inner.bg-secondary .h1,
.row .row__inner.bg-secondary .h2,
.row .row__inner.bg-secondary .h3,
.row .row__inner.bg-secondary .h5,
.row .row__inner.bg-secondary .h6 {
  color: #f47c00; }

.row.bg-secondary h1.first-line, .row.bg-secondary h2.first-line, .row.bg-secondary h3.first-line, .row.bg-secondary h4.first-line, .row.bg-secondary h5.first-line, .row.bg-secondary h6.first-line, .row.bg-secondary .h1.first-line, .row.bg-secondary .h2.first-line, .row.bg-secondary .h3.first-line, .row.bg-secondary .h4.first-line, .row.bg-secondary .h5.first-line, .row.bg-secondary .h6.first-line,
.row .row__inner.bg-secondary h1.first-line,
.row .row__inner.bg-secondary h2.first-line,
.row .row__inner.bg-secondary h3.first-line,
.row .row__inner.bg-secondary h4.first-line,
.row .row__inner.bg-secondary h5.first-line,
.row .row__inner.bg-secondary h6.first-line,
.row .row__inner.bg-secondary .h1.first-line,
.row .row__inner.bg-secondary .h2.first-line,
.row .row__inner.bg-secondary .h3.first-line,
.row .row__inner.bg-secondary .h4.first-line,
.row .row__inner.bg-secondary .h5.first-line,
.row .row__inner.bg-secondary .h6.first-line {
  color: #fff; }
  .row.bg-secondary h1.first-line:first-line, .row.bg-secondary h2.first-line:first-line, .row.bg-secondary h3.first-line:first-line, .row.bg-secondary h4.first-line:first-line, .row.bg-secondary h5.first-line:first-line, .row.bg-secondary h6.first-line:first-line, .row.bg-secondary .h1.first-line:first-line, .row.bg-secondary .h2.first-line:first-line, .row.bg-secondary .h3.first-line:first-line, .row.bg-secondary .h4.first-line:first-line, .row.bg-secondary .h5.first-line:first-line, .row.bg-secondary .h6.first-line:first-line,
  .row .row__inner.bg-secondary h1.first-line:first-line,
  .row .row__inner.bg-secondary h2.first-line:first-line,
  .row .row__inner.bg-secondary h3.first-line:first-line,
  .row .row__inner.bg-secondary h4.first-line:first-line,
  .row .row__inner.bg-secondary h5.first-line:first-line,
  .row .row__inner.bg-secondary h6.first-line:first-line,
  .row .row__inner.bg-secondary .h1.first-line:first-line,
  .row .row__inner.bg-secondary .h2.first-line:first-line,
  .row .row__inner.bg-secondary .h3.first-line:first-line,
  .row .row__inner.bg-secondary .h4.first-line:first-line,
  .row .row__inner.bg-secondary .h5.first-line:first-line,
  .row .row__inner.bg-secondary .h6.first-line:first-line {
    color: #f47c00; }

.row.bg-secondary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a {
  border-color: #f47c00;
  color: #fff !important; }
  .row.bg-secondary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a:hover,
  .row.bg-secondary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a:hover,
  .row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a:hover,
  .row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a:hover {
    color: #f47c00 !important; }

.row.bg-secondary.row--calculator .tabbed-content__nav a,
.row .row__inner.bg-secondary.row--calculator .tabbed-content__nav a {
  border-color: #C1295A;
  color: #fff !important; }
  .row.bg-secondary.row--calculator .tabbed-content__nav a:hover,
  .row .row__inner.bg-secondary.row--calculator .tabbed-content__nav a:hover {
    color: #C1295A !important; }

.row.bg-secondary .calculator__results-table table.table tr:not(:last-child),
.row .row__inner.bg-secondary .calculator__results-table table.table tr:not(:last-child) {
  border-color: #86A0C2; }

.row.bg-secondary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a {
  background-color: #f47c00;
  color: #fff !important; }

.row.bg-secondary.row--calculator .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-secondary.row--calculator .tabbed-content__nav li.r-tabs-state-active a {
  background-color: #C1295A;
  color: #fff !important; }

.row.bg-secondary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs {
  border-color: #a8bbd3; }

.row.bg-secondary.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-title,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-title,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-title,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-title {
  color: #86A0C2; }

.row.bg-secondary.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-title {
  color: #1E396B; }

.row.bg-secondary.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row.bg-secondary.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle {
  color: #8F99AB; }

.row.bg-secondary .block--form:not(.block--form--boxed) .gform_title,
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_title {
  color: #fff; }

.row.bg-secondary .block--form:not(.block--form--boxed) .gform_description,
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_description {
  color: #a8bbd3; }

.row.bg-secondary .block--form:not(.block--form--boxed) .validation_error,
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .validation_error {
  background-color: #F04E57;
  color: #fff; }

.row.bg-secondary .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row.bg-secondary .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row.bg-secondary .block--form:not(.block--form--boxed) .gfield_error.text-input textarea,
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gfield_error.text-input textarea {
  background-color: #fcdbdd; }

.row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
.row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn {
  background-color: #f47c00; }
  .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn, .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active, .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited, .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover {
    color: #fff; }
  .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa {
    color: #fff; }
  .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover, .row.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-secondary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active {
    background-color: #c16200; }

.row.bg-secondary.row--calculator .block--form.block--form--boxed,
.row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed {
  background-color: #fff;
  border-color: #fff; }
  .row.bg-secondary.row--calculator .block--form.block--form--boxed input.text-input,
  .row.bg-secondary.row--calculator .block--form.block--form--boxed textarea.text-input,
  .row.bg-secondary.row--calculator .block--form.block--form--boxed textarea,
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .text-input input,
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .text-input textarea,
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields textarea,
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="text"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="password"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="name"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="email"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="url"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="tel"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="color"],
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="number"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed input.text-input,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed textarea.text-input,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed textarea,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .text-input input,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .text-input textarea,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields textarea,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="text"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="password"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="name"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="email"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="url"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="tel"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="color"],
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="number"] {
    border-color: #f5f7f8;
    background-color: #f5f7f8; }
    .row.bg-secondary.row--calculator .block--form.block--form--boxed input.text-input:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed textarea.text-input:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed textarea:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .text-input input:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .text-input textarea:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields textarea:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="text"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="password"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="name"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="email"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="url"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="tel"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="color"]:focus,
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="number"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed input.text-input:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed textarea.text-input:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed textarea:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .text-input input:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .text-input textarea:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields textarea:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="text"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="password"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="name"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="email"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="url"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="tel"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="color"]:focus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .gform_fields input[type="number"]:focus {
      border-color: #1E396B; }
  .row.bg-secondary.row--calculator .block--form.block--form--boxed .customSelect,
  .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .customSelect {
    border-color: #f5f7f8;
    background: #f5f7f8; }
    .row.bg-secondary.row--calculator .block--form.block--form--boxed .customSelect.customSelectFocus,
    .row .row__inner.bg-secondary.row--calculator .block--form.block--form--boxed .customSelect.customSelectFocus {
      border-color: #1E396B; }

.row.bg-secondary-light .row__header,
.row.bg-secondary-light .row__footer,
.row.bg-secondary-light .row__content,
.row .row__inner.bg-secondary-light .row__header,
.row .row__inner.bg-secondary-light .row__footer,
.row .row__inner.bg-secondary-light .row__content {
  color: #fff; }

.row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  color: #1E396B; }
  .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    background-color: rgba(30, 57, 107, 0); }
  .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus, .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active, .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover,
  .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus,
  .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active,
  .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover {
    color: #1E396B; }
    .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .row.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
    .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
    .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
    .row .row__inner.bg-secondary-light a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
      background-color: #1e396b; }

.row.bg-secondary-light .row__media figcaption,
.row .row__inner.bg-secondary-light .row__media figcaption {
  color: #fff; }

.row.bg-secondary-light h1, .row.bg-secondary-light h2, .row.bg-secondary-light h3, .row.bg-secondary-light h5, .row.bg-secondary-light h6, .row.bg-secondary-light .h1, .row.bg-secondary-light .h2, .row.bg-secondary-light .h3, .row.bg-secondary-light .h5, .row.bg-secondary-light .h6,
.row .row__inner.bg-secondary-light h1,
.row .row__inner.bg-secondary-light h2,
.row .row__inner.bg-secondary-light h3,
.row .row__inner.bg-secondary-light h5,
.row .row__inner.bg-secondary-light h6,
.row .row__inner.bg-secondary-light .h1,
.row .row__inner.bg-secondary-light .h2,
.row .row__inner.bg-secondary-light .h3,
.row .row__inner.bg-secondary-light .h5,
.row .row__inner.bg-secondary-light .h6 {
  color: #1E396B; }

.row.bg-secondary-light h1.first-line, .row.bg-secondary-light h2.first-line, .row.bg-secondary-light h3.first-line, .row.bg-secondary-light h4.first-line, .row.bg-secondary-light h5.first-line, .row.bg-secondary-light h6.first-line, .row.bg-secondary-light .h1.first-line, .row.bg-secondary-light .h2.first-line, .row.bg-secondary-light .h3.first-line, .row.bg-secondary-light .h4.first-line, .row.bg-secondary-light .h5.first-line, .row.bg-secondary-light .h6.first-line,
.row .row__inner.bg-secondary-light h1.first-line,
.row .row__inner.bg-secondary-light h2.first-line,
.row .row__inner.bg-secondary-light h3.first-line,
.row .row__inner.bg-secondary-light h4.first-line,
.row .row__inner.bg-secondary-light h5.first-line,
.row .row__inner.bg-secondary-light h6.first-line,
.row .row__inner.bg-secondary-light .h1.first-line,
.row .row__inner.bg-secondary-light .h2.first-line,
.row .row__inner.bg-secondary-light .h3.first-line,
.row .row__inner.bg-secondary-light .h4.first-line,
.row .row__inner.bg-secondary-light .h5.first-line,
.row .row__inner.bg-secondary-light .h6.first-line {
  color: #fff; }
  .row.bg-secondary-light h1.first-line:first-line, .row.bg-secondary-light h2.first-line:first-line, .row.bg-secondary-light h3.first-line:first-line, .row.bg-secondary-light h4.first-line:first-line, .row.bg-secondary-light h5.first-line:first-line, .row.bg-secondary-light h6.first-line:first-line, .row.bg-secondary-light .h1.first-line:first-line, .row.bg-secondary-light .h2.first-line:first-line, .row.bg-secondary-light .h3.first-line:first-line, .row.bg-secondary-light .h4.first-line:first-line, .row.bg-secondary-light .h5.first-line:first-line, .row.bg-secondary-light .h6.first-line:first-line,
  .row .row__inner.bg-secondary-light h1.first-line:first-line,
  .row .row__inner.bg-secondary-light h2.first-line:first-line,
  .row .row__inner.bg-secondary-light h3.first-line:first-line,
  .row .row__inner.bg-secondary-light h4.first-line:first-line,
  .row .row__inner.bg-secondary-light h5.first-line:first-line,
  .row .row__inner.bg-secondary-light h6.first-line:first-line,
  .row .row__inner.bg-secondary-light .h1.first-line:first-line,
  .row .row__inner.bg-secondary-light .h2.first-line:first-line,
  .row .row__inner.bg-secondary-light .h3.first-line:first-line,
  .row .row__inner.bg-secondary-light .h4.first-line:first-line,
  .row .row__inner.bg-secondary-light .h5.first-line:first-line,
  .row .row__inner.bg-secondary-light .h6.first-line:first-line {
    color: #1E396B; }

.row.bg-secondary-light .calculator__results-table table.table tr:not(:last-child),
.row .row__inner.bg-secondary-light .calculator__results-table table.table tr:not(:last-child) {
  border-color: #fff; }

.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs {
  border-color: #a8bbd3; }

.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle {
  color: #fff; }

.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-title {
  color: #1E396B; }

.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-light.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle {
  color: #8F99AB; }

.row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_title,
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_title {
  color: #fff; }

.row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_description,
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_description {
  color: #1E396B; }

.row.bg-secondary-light .block--form:not(.block--form--boxed) .validation_error,
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .validation_error {
  background-color: #F04E57;
  color: #fff; }

.row.bg-secondary-light .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row.bg-secondary-light .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row.bg-secondary-light .block--form:not(.block--form--boxed) .gfield_error.text-input textarea,
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gfield_error.text-input textarea {
  background-color: #fcdbdd; }

.row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
.row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn {
  background-color: #f47c00; }
  .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn, .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active, .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited, .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover {
    color: #fff; }
  .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa {
    color: #fff; }
  .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover, .row.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-secondary-light .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active {
    background-color: #c16200; }

.row.bg-secondary-lightest .row__header,
.row.bg-secondary-lightest .row__footer,
.row.bg-secondary-lightest .row__content,
.row .row__inner.bg-secondary-lightest .row__header,
.row .row__inner.bg-secondary-lightest .row__footer,
.row .row__inner.bg-secondary-lightest .row__content {
  color: #231f20; }

.row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  color: #1E396B; }
  .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    background-color: rgba(30, 57, 107, 0); }
  .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus, .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active, .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover,
  .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus,
  .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active,
  .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover {
    color: #1E396B; }
    .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .row.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
    .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
    .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
    .row .row__inner.bg-secondary-lightest a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
      background-color: #1e396b; }

.row.bg-secondary-lightest .row__media figcaption,
.row .row__inner.bg-secondary-lightest .row__media figcaption {
  color: #fff; }

.row.bg-secondary-lightest h1, .row.bg-secondary-lightest h2, .row.bg-secondary-lightest h3, .row.bg-secondary-lightest h5, .row.bg-secondary-lightest h6, .row.bg-secondary-lightest .h1, .row.bg-secondary-lightest .h2, .row.bg-secondary-lightest .h3, .row.bg-secondary-lightest .h5, .row.bg-secondary-lightest .h6,
.row .row__inner.bg-secondary-lightest h1,
.row .row__inner.bg-secondary-lightest h2,
.row .row__inner.bg-secondary-lightest h3,
.row .row__inner.bg-secondary-lightest h5,
.row .row__inner.bg-secondary-lightest h6,
.row .row__inner.bg-secondary-lightest .h1,
.row .row__inner.bg-secondary-lightest .h2,
.row .row__inner.bg-secondary-lightest .h3,
.row .row__inner.bg-secondary-lightest .h5,
.row .row__inner.bg-secondary-lightest .h6 {
  color: #f47c00; }

.row.bg-secondary-lightest h1.first-line, .row.bg-secondary-lightest h2.first-line, .row.bg-secondary-lightest h3.first-line, .row.bg-secondary-lightest h4.first-line, .row.bg-secondary-lightest h5.first-line, .row.bg-secondary-lightest h6.first-line, .row.bg-secondary-lightest .h1.first-line, .row.bg-secondary-lightest .h2.first-line, .row.bg-secondary-lightest .h3.first-line, .row.bg-secondary-lightest .h4.first-line, .row.bg-secondary-lightest .h5.first-line, .row.bg-secondary-lightest .h6.first-line,
.row .row__inner.bg-secondary-lightest h1.first-line,
.row .row__inner.bg-secondary-lightest h2.first-line,
.row .row__inner.bg-secondary-lightest h3.first-line,
.row .row__inner.bg-secondary-lightest h4.first-line,
.row .row__inner.bg-secondary-lightest h5.first-line,
.row .row__inner.bg-secondary-lightest h6.first-line,
.row .row__inner.bg-secondary-lightest .h1.first-line,
.row .row__inner.bg-secondary-lightest .h2.first-line,
.row .row__inner.bg-secondary-lightest .h3.first-line,
.row .row__inner.bg-secondary-lightest .h4.first-line,
.row .row__inner.bg-secondary-lightest .h5.first-line,
.row .row__inner.bg-secondary-lightest .h6.first-line {
  color: #fff; }
  .row.bg-secondary-lightest h1.first-line:first-line, .row.bg-secondary-lightest h2.first-line:first-line, .row.bg-secondary-lightest h3.first-line:first-line, .row.bg-secondary-lightest h4.first-line:first-line, .row.bg-secondary-lightest h5.first-line:first-line, .row.bg-secondary-lightest h6.first-line:first-line, .row.bg-secondary-lightest .h1.first-line:first-line, .row.bg-secondary-lightest .h2.first-line:first-line, .row.bg-secondary-lightest .h3.first-line:first-line, .row.bg-secondary-lightest .h4.first-line:first-line, .row.bg-secondary-lightest .h5.first-line:first-line, .row.bg-secondary-lightest .h6.first-line:first-line,
  .row .row__inner.bg-secondary-lightest h1.first-line:first-line,
  .row .row__inner.bg-secondary-lightest h2.first-line:first-line,
  .row .row__inner.bg-secondary-lightest h3.first-line:first-line,
  .row .row__inner.bg-secondary-lightest h4.first-line:first-line,
  .row .row__inner.bg-secondary-lightest h5.first-line:first-line,
  .row .row__inner.bg-secondary-lightest h6.first-line:first-line,
  .row .row__inner.bg-secondary-lightest .h1.first-line:first-line,
  .row .row__inner.bg-secondary-lightest .h2.first-line:first-line,
  .row .row__inner.bg-secondary-lightest .h3.first-line:first-line,
  .row .row__inner.bg-secondary-lightest .h4.first-line:first-line,
  .row .row__inner.bg-secondary-lightest .h5.first-line:first-line,
  .row .row__inner.bg-secondary-lightest .h6.first-line:first-line {
    color: #1E396B; }

.row.bg-secondary-lightest .calculator__results-table table.table tr:not(:last-child),
.row .row__inner.bg-secondary-lightest .calculator__results-table table.table tr:not(:last-child) {
  border-color: #1E396B; }

.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs {
  border-color: #86A0C2; }

.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts .r-tabs-tab:not(.r-tabs-state-active) .tabbed-content__nav-subtitle {
  color: #fff; }

.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-title,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-title {
  color: #1E396B; }

.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover .tabbed-content__nav-subtitle,
.row .row__inner.bg-secondary-lightest.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover .tabbed-content__nav-subtitle {
  color: #8F99AB; }

.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_title,
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_title {
  color: #1E396B; }

.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_description,
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_description {
  color: #fff; }

.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .validation_error,
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .validation_error {
  background-color: #F04E57;
  color: #fff; }

.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gfield_error.text-input textarea,
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gfield_error.text-input textarea {
  background-color: #fff; }

.row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
.row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn {
  background-color: #f47c00; }
  .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn, .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active, .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited, .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover {
    color: #fff; }
  .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa {
    color: #fff; }
  .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover, .row.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-secondary-lightest .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active {
    background-color: #c16200; }

.row.bg-tertiary .row__header,
.row.bg-tertiary .row__footer,
.row.bg-tertiary .row__content,
.row .row__inner.bg-tertiary .row__header,
.row .row__inner.bg-tertiary .row__footer,
.row .row__inner.bg-tertiary .row__content {
  color: #fff; }

.row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor),
.row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
.gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor) {
  color: #1E396B; }
  .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after,
  .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):after {
    background-color: rgba(30, 57, 107, 0); }
  .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus, .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active, .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover,
  .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus,
  .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active,
  .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
  .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover {
    color: #1E396B; }
    .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after, .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after, .row.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after,
    .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):focus:after,
    .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):active:after,
    .row .row__inner.bg-tertiary a:not(.btn):not(.sprite):not(.ginput_card_security_code_icon):not(
    .gform_card_icon):not(.ico):not(.loz):not(.r-tabs-anchor):hover:after {
      background-color: #1e396b; }

.row.bg-tertiary .row__media figcaption,
.row .row__inner.bg-tertiary .row__media figcaption {
  color: #EEEFF1; }

.row.bg-tertiary h1.first-line, .row.bg-tertiary h2.first-line, .row.bg-tertiary h3.first-line, .row.bg-tertiary h4.first-line, .row.bg-tertiary h5.first-line, .row.bg-tertiary h6.first-line, .row.bg-tertiary .h1.first-line, .row.bg-tertiary .h2.first-line, .row.bg-tertiary .h3.first-line, .row.bg-tertiary .h4.first-line, .row.bg-tertiary .h5.first-line, .row.bg-tertiary .h6.first-line,
.row .row__inner.bg-tertiary h1.first-line,
.row .row__inner.bg-tertiary h2.first-line,
.row .row__inner.bg-tertiary h3.first-line,
.row .row__inner.bg-tertiary h4.first-line,
.row .row__inner.bg-tertiary h5.first-line,
.row .row__inner.bg-tertiary h6.first-line,
.row .row__inner.bg-tertiary .h1.first-line,
.row .row__inner.bg-tertiary .h2.first-line,
.row .row__inner.bg-tertiary .h3.first-line,
.row .row__inner.bg-tertiary .h4.first-line,
.row .row__inner.bg-tertiary .h5.first-line,
.row .row__inner.bg-tertiary .h6.first-line {
  color: #fff; }
  .row.bg-tertiary h1.first-line:first-line, .row.bg-tertiary h2.first-line:first-line, .row.bg-tertiary h3.first-line:first-line, .row.bg-tertiary h4.first-line:first-line, .row.bg-tertiary h5.first-line:first-line, .row.bg-tertiary h6.first-line:first-line, .row.bg-tertiary .h1.first-line:first-line, .row.bg-tertiary .h2.first-line:first-line, .row.bg-tertiary .h3.first-line:first-line, .row.bg-tertiary .h4.first-line:first-line, .row.bg-tertiary .h5.first-line:first-line, .row.bg-tertiary .h6.first-line:first-line,
  .row .row__inner.bg-tertiary h1.first-line:first-line,
  .row .row__inner.bg-tertiary h2.first-line:first-line,
  .row .row__inner.bg-tertiary h3.first-line:first-line,
  .row .row__inner.bg-tertiary h4.first-line:first-line,
  .row .row__inner.bg-tertiary h5.first-line:first-line,
  .row .row__inner.bg-tertiary h6.first-line:first-line,
  .row .row__inner.bg-tertiary .h1.first-line:first-line,
  .row .row__inner.bg-tertiary .h2.first-line:first-line,
  .row .row__inner.bg-tertiary .h3.first-line:first-line,
  .row .row__inner.bg-tertiary .h4.first-line:first-line,
  .row .row__inner.bg-tertiary .h5.first-line:first-line,
  .row .row__inner.bg-tertiary .h6.first-line:first-line {
    color: #1E396B; }

.row.bg-tertiary.row--calculator .tabbed-content__nav li.r-tabs-state-active a,
.row.bg-tertiary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
.row.bg-tertiary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-tertiary.row--calculator .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-tertiary.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
.row .row__inner.bg-tertiary.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a {
  color: #fff !important; }

.row.bg-tertiary .block--form:not(.block--form--boxed) .gform_title,
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_title {
  color: #fff; }

.row.bg-tertiary .block--form:not(.block--form--boxed) .gform_description,
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_description {
  color: #1E396B; }

.row.bg-tertiary .block--form:not(.block--form--boxed) .validation_error,
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .validation_error {
  background-color: #F04E57;
  color: #fff; }

.row.bg-tertiary .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row.bg-tertiary .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row.bg-tertiary .block--form:not(.block--form--boxed) .gfield_error.text-input textarea,
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gfield_error input:not([type="hidden"]),
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gfield_error.text-input input,
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gfield_error.text-input textarea {
  background-color: #fcdbdd; }

.row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
.row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn {
  background-color: #1E396B; }
  .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn, .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active, .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited, .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:visited,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover {
    color: #fff; }
  .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .ico,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn .fa {
    color: #fff; }
  .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus, .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover, .row.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:focus,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:hover,
  .row .row__inner.bg-tertiary .block--form:not(.block--form--boxed) .gform_wrapper .form-btn:active {
    background-color: #132443; }

.row.bg-tertiary-light .block--form.block--form--boxed,
.row .row__inner.bg-tertiary-light .block--form.block--form--boxed,
.row.bg-tertiary-lightest .block--form.block--form--boxed,
.row .row__inner.bg-tertiary-lightest .block--form.block--form--boxed {
  background-color: #fff;
  border-color: #CFD9EC; }
  .row.bg-tertiary-light .block--form.block--form--boxed .gform_description,
  .row .row__inner.bg-tertiary-light .block--form.block--form--boxed .gform_description,
  .row.bg-tertiary-lightest .block--form.block--form--boxed .gform_description,
  .row .row__inner.bg-tertiary-lightest .block--form.block--form--boxed .gform_description {
    color: #1E396B; }

#image-overlay-primary-small,
#image-overlay-secondary-small {
  height: auto;
  width: 100%;
  position: absolute;
  bottom: 0; }

.row--hero {
  background-color: #FAFAFB; }
  .row--hero .btn--video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    line-height: 1;
    border-radius: 50%;
    box-shadow: 20px 20px 40px 0 rgba(35, 31, 32, 0.2); }
    .row--hero .btn--video:before {
      content: "";
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background-color: #f47c00;
      z-index: 8; }
    .row--hero .btn--video .ico {
      font-size: 80px;
      color: #fff;
      top: 0 !important;
      transition: color 0.3s;
      position: relative;
      z-index: 9; }
    .row--hero .btn--video:hover .ico {
      color: #1E396B; }
  .row--hero .btn--scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; }
    .row--hero .btn--scroll,
    .row--hero .btn--scroll .ico,
    .row--hero .btn--scroll .fa {
      color: #fff; }
  .row--hero .row__inner,
  .row--hero .row__body,
  .row--hero .row__media,
  .row--hero .row__content,
  .row--hero .image-overlay {
    height: 100%; }
  .row--hero .row__body,
  .row--hero .row__content {
    position: relative; }
  .row--hero .row__inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative; }
  .row--hero .row__body:after {
    content: "";
    display: table;
    clear: both; }
  .row--hero .row__media figure {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%; }
    .row--hero .row__media figure img {
      border: 0 !important;
      clip: rect(0 0 0 0) !important;
      height: 1px !important;
      margin: -1px !important;
      overflow: hidden !important;
      padding: 0 !important;
      position: absolute !important;
      width: 1px !important; }
  .row--hero .image-overlay {
    position: absolute;
    width: auto;
    pointer-events: none; }
    .row--hero .image-overlay > svg {
      position: relative;
      height: 100%;
      width: auto; }
  .row--hero .row__content {
    height: 100%;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .row--hero .row__content__inner {
    max-width: 100%;
    width: 600px; }

#row_hero_article .row__media figure,
#row_hero_author .row__media figure {
  background-position: 50% 50%; }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--hero .row__media figure {
    background-position: 50%; } }

@media only screen and (max-width: 798px) {
  .row--hero {
    max-height: none;
    min-height: 0; }
    .row--hero .row__media figure {
      background-position: 50%; }
    .row--hero .image-overlay {
      width: 100%; } }

@media only screen and (max-width: 588px) {
  .row--hero .btn--scroll {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

.row--hero.row--hero--default {
  height: 100vh;
  max-height: 600px;
  min-height: 350px;
  /*
	.row__body {
		background-color: $tertiary-color-lightest;
	}
	*/ }
  .row--hero.row--hero--default #image-overlay-secondary_x5F__x5F_front,
  .row--hero.row--hero--default #image-overlay-secondary-small_x5F__x5F_back {
    fill: #FAFAFB; }
  .row--hero.row--hero--default .row__media {
    width: 40%;
    float: left;
    position: relative; }
  .row--hero.row--hero--default .image-overlay {
    right: -1px; }
  .row--hero.row--hero--default .row__content {
    width: 60%;
    float: left;
    padding: 180px 0 100px 0; }

@media (max-width: 1460px) {
  .row--hero.row--hero--default .row__content {
    padding-right: 20px; } }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--hero.row--hero--default .row__media {
    width: 50%; }
  .row--hero.row--hero--default .row__content {
    width: 50%; } }

@media only screen and (max-width: 798px) {
  .row--hero.row--hero--default {
    height: auto;
    max-height: none; }
    .row--hero.row--hero--default .row__media,
    .row--hero.row--hero--default .row__content {
      float: none; }
  .row--hero.row--hero--default .row__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: block; }
  .row--hero.row--hero--default .row__media {
    width: 100%;
    margin-left: 0;
    height: auto;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    -ms-flex: none;
    flex: none;
    height: 320px; }
  .row--hero.row--hero--default .row__content {
    width: 100%;
    height: auto;
    display: block;
    padding: 0 20px 20px;
    -ms-flex: 1;
    flex: 1; }
    .row--hero.row--hero--default .row__content h1 {
      display: block;
      position: absolute;
      left: 20px;
      top: -140px;
      transform: translateY(-100%);
      position: relative;
      top: 0;
      left: 0;
      transform: none;
      font-size: 45px; }
    .row--hero.row--hero--default .row__content p {
      width: 100%; }
    .row--hero.row--hero--default .row__content .btn {
      display: block; } }

.row--hero.row--hero--large {
  height: 100vh;
  max-height: 790px;
  min-height: 480px;
  background-color: #fff; }
  .row--hero.row--hero--large .row__media {
    position: absolute;
    width: 73%;
    margin-left: -18%;
    right: 0;
    z-index: 1; }
  .row--hero.row--hero--large .row__content {
    width: 45%;
    padding: 180px 150px 140px 0; }
  .row--hero.row--hero--large .image-overlay {
    left: -1px; }

@media (max-width: 1460px) {
  .row--hero.row--hero--large .row__content {
    padding-left: 40px; } }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--hero.row--hero--large .row__media {
    width: 70%;
    margin-left: -20%; }
  .row--hero.row--hero--large .row__content {
    padding-right: 90px;
    width: 50%; } }

@media only screen and (max-width: 798px) {
  .row--hero.row--hero--large {
    height: auto;
    max-height: none; }
    .row--hero.row--hero--large .row__media,
    .row--hero.row--hero--large .row__content {
      float: none; }
  .row--hero.row--hero--large .row__body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: block; }
  .row--hero.row--hero--large .row__media {
    width: 100%;
    margin-left: 0;
    height: auto;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    -ms-flex: none;
    flex: none;
    height: 340px; }
  .row--hero.row--hero--large .row__content {
    width: 100%;
    height: auto;
    display: block;
    padding: 20px;
    -ms-flex: 1;
    flex: 1; }
    .row--hero.row--hero--large .row__content h1 {
      display: block;
      position: absolute;
      left: 20px;
      top: -140px;
      transform: translateY(-100%);
      position: relative;
      top: 0;
      left: 0;
      transform: none;
      font-size: 45px; }
    .row--hero.row--hero--large .row__content p {
      width: 100%; }
    .row--hero.row--hero--large .row__content .btn {
      display: block; }
  /*
	.row--hero.row--hero--large {

		.row__body {
			display: flex;
			align-items: flex-start;
			flex-wrap: wrap;
			flex-direction: column;
			justify-content: flex-end;
		}
		.row__media {
			width: 100%;
			margin-left: 0;

			height: auto;
			flex: 1;
			position: relative;

			//top: 0;
		}
		.row__content {
			width: 100%;
			height: auto;
			display: block;

			background-color: #fff;
			padding: 0 $base-spacing-unit $double-spacing;

			h1 {
				display: block;
				position: absolute;
				left: 20px;
				top: -140px;
				transform: translateY(-100%);
			}
			p {
				width: 100%;
			}
			.btn {
				display: block;
			}
		}

	}
	*/ }

.row--hero.row--hero--simple {
  min-height: 520px; }
  .row--hero.row--hero--simple .row__inner {
    background-color: #FAFAFB; }
  .row--hero.row--hero--simple .row__content {
    padding: 180px 0 80px 0; }
    .row--hero.row--hero--simple .row__content h1 {
      line-height: 1.2; }
    .row--hero.row--hero--simple .row__content p {
      line-height: 1.5; }
    .row--hero.row--hero--simple .row__content.text--center > * {
      display: block;
      width: 100%; }

.row--hero.row--hero--simple#row_hero_resources .row__content__inner {
  width: 100%; }
  .row--hero.row--hero--simple#row_hero_resources .row__content__inner > *:not(h1) {
    max-width: 100%;
    width: 600px; }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .row--hero.row--hero--simple .row__content {
    padding: 140px 0 60px; } }

@media only screen and (max-width: 588px) {
  .row--hero.row--hero--simple {
    min-height: 340px; }
    .row--hero.row--hero--simple .row__content {
      padding: 120px 0 40px;
      /*
			h1 {
				font-size: 45px;
				line-height: 1.1;
			}
			*/ } }

@media only screen and (max-width: 798px) {
  .row--hero.row--hero--simple {
    max-height: none; }
    .row--hero.row--hero--simple .row__content h1 {
      font-size: 45px; } }

.row--content-media {
  overflow: visible; }
  .row--content-media .row__inner,
  .row--content-media .row__body,
  .row--content-media .row__media,
  .row--content-media .row__content,
  .row--content-media .image-overlay,
  .row--content-media .row__body .grid,
  .row--content-media .row__body .flex-grid,
  .row--content-media .row__body .grid__item,
  .row--content-media .row__body .flex-grid__item {
    height: 100%; }
  .row--content-media .row__inner {
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    position: relative; }
  .row--content-media .row__body:after {
    content: "";
    display: table;
    clear: both; }
  .row--content-media .row__media-wrap,
  .row--content-media .row__content-wrap {
    width: 50%; }
  .row--content-media .row__media {
    padding-right: 40px;
    position: relative; }
    .row--content-media .row__media figure {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 100% 50%; }
      .row--content-media .row__media figure img {
        display: none; }
    .row--content-media .row__media figcaption {
      display: block;
      position: absolute;
      right: -50%;
      bottom: 20%;
      color: #fff;
      transform: rotate(-90deg);
      transform-origin: 0 100%;
      text-align: left;
      width: 60%; }
  .row--content-media .row__media-button {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 80px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 18px 0 rgba(35, 31, 32, 0.4);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s; }
    .row--content-media .row__media-button,
    .row--content-media .row__media-button .ico,
    .row--content-media .row__media-button .fa {
      color: #fff; }
    .row--content-media .row__media-button .ico,
    .row--content-media .row__media-button .fa {
      display: block;
      transition: all 0.3s; }
    .row--content-media .row__media-button:hover, .row--content-media .row__media-button:focus, .row--content-media .row__media-button:active {
      box-shadow: 0 0 0 0 rgba(35, 31, 32, 0); }
      .row--content-media .row__media-button:hover .ico,
      .row--content-media .row__media-button:hover .fa, .row--content-media .row__media-button:focus .ico,
      .row--content-media .row__media-button:focus .fa, .row--content-media .row__media-button:active .ico,
      .row--content-media .row__media-button:active .fa {
        transform: scale(1.2);
        color: #f47c00; }
      .row--content-media .row__media-button:hover + figure img, .row--content-media .row__media-button:focus + figure img, .row--content-media .row__media-button:active + figure img {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.7;
        transition-duration: 1s; }
    .row--content-media .row__media-button + figure {
      z-index: 1;
      background-image: none !important;
      position: relative;
      overflow: hidden; }
      .row--content-media .row__media-button + figure img {
        max-width: none;
        min-width: 100%;
        /*min-height: 100%;*/
        display: block;
        position: absolute;
        transform: translate(-50%, -50%);
        -webkit-transform-style: preserve-3d;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transition: all 0.6s;
        left: 50%;
        top: 50%; }
  .row--content-media .image-overlay {
    position: absolute;
    width: auto;
    pointer-events: none; }
    .row--content-media .image-overlay > svg {
      position: relative;
      height: 100%;
      width: auto; }
  .row--content-media .row__content {
    height: 100%;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 60px 40px; }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--content-media .row__media figure {
    background-position: 50%; } }

@media only screen and (max-width: 798px) {
  .row--content-media {
    height: auto; }
    .row--content-media .row__media-wrap,
    .row--content-media .row__content-wrap {
      width: 100%; }
    .row--content-media .row__body {
      display: block;
      padding: 0; }
      .row--content-media .row__body > .flex-grid {
        margin-left: 0; }
        .row--content-media .row__body > .flex-grid .flex-grid__item {
          padding-left: 0; }
    .row--content-media .row__media {
      width: 100%;
      position: relative;
      padding: 0; }
      .row--content-media .row__media.row__media--inline {
        padding-left: 40px;
        padding-right: 40px; }
    .row--content-media .row__content {
      width: 100%;
      height: auto;
      display: block;
      padding: 40px 20px; } }

@media only screen and (max-width: 588px) {
  .row--content-media .row__media:not(.row__media--inline) {
    height: 180px; }
  .row--content-media .row__content .btn {
    display: block; } }

.row--content-media.row--content-media--default .row__media figure {
  min-height: 500px; }

.row--content-media.row--content-media--default .row__media.row__media--inline {
  text-align: center; }
  .row--content-media.row--content-media--default .row__media.row__media--inline figure {
    background-image: none !important;
    min-height: 0;
    width: auto;
    height: auto;
    line-height: 0;
    display: inline-block; }
    .row--content-media.row--content-media--default .row__media.row__media--inline figure img {
      display: inline-block !important; }

.row--content-media.row--content-media--default .row__media.row__media--fit-contain figure {
  background-size: contain; }

.row--content-media.row--content-media--default .row__content {
  padding-right: 140px; }

.row--content-media.row--content-media--default .row__body > .flex-grid--reverse .row__media {
  padding-right: 0;
  padding-left: 40px; }

.row--content-media.row--content-media--default .row__body > .flex-grid--reverse .row__content {
  padding-right: 40px;
  padding-left: 140px; }

@media (max-width: 1460px) {
  .row--content-media.row--content-media--default .row__content {
    padding-right: 40px; }
  .row--content-media.row--content-media--default .row__body > .flex-grid--reverse .row__content {
    padding-left: 40px; } }

@media only screen and (max-width: 798px) {
  .row--content-media.row--content-media--default .row__media figure {
    min-height: 0; }
  .row--content-media.row--content-media--default .row__media.row__media--inline {
    text-align: center !important; }
  .row--content-media.row--content-media--default .row__body > .flex-grid--reverse .row__media {
    padding: 0; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .row--content-media.row--content-media--default .row__media-wrap {
    height: 320px; }
    .row--content-media.row--content-media--default .row__media-wrap.row__media-wrap--inline {
      height: auto; } }

@media only screen and (max-width: 588px) {
  .row--content-media.row--content-media--default .row__content {
    padding-top: 40px;
    padding-bottom: 40px; } }

.row--content-media.row--content-media--feature {
  height: 100vh;
  max-height: 760px;
  min-height: 420px;
  background-color: #fff; }
  .row--content-media.row--content-media--feature .row__inner,
  .row--content-media.row--content-media--feature .row__body {
    padding: 0; }
  .row--content-media.row--content-media--feature .row__media-wrap {
    width: 52%; }
  .row--content-media.row--content-media--feature .row__content-wrap {
    width: 48%; }
  .row--content-media.row--content-media--feature .row__media {
    padding: 0; }
  .row--content-media.row--content-media--feature .row__content {
    padding: 60px 60px 120px 140px; }
  .row--content-media.row--content-media--feature .image-overlay {
    height: 63%;
    bottom: 0;
    left: -1px; }

@media (max-width: 1460px) {
  .row--content-media.row--content-media--feature .row__content {
    padding-left: 40px; } }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--content-media .row__media figure {
    background-position: 50%; }
  .row--content-media.row--content-media--feature .row__media-wrap,
  .row--content-media.row--content-media--feature .row__content-wrap {
    width: 50%; } }

@media only screen and (max-width: 798px) {
  .row--content-media.row--content-media--feature {
    height: auto;
    max-height: none;
    min-height: 0; }
    .row--content-media.row--content-media--feature .row__media-wrap,
    .row--content-media.row--content-media--feature .row__content-wrap {
      width: 100%; }
    .row--content-media.row--content-media--feature .row__media {
      height: 320px; }
      .row--content-media.row--content-media--feature .row__media figcaption {
        border: 0 !important;
        clip: rect(0 0 0 0) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important; }
    .row--content-media.row--content-media--feature .image-overlay {
      display: none; } }

@media only screen and (max-width: 588px) {
  .row--content-media.row--content-media--feature .row__content {
    padding-top: 40px;
    padding-bottom: 40px; }
  .row--content-media.row--content-media--feature .image-overlay {
    display: none; } }

.row--content-media.row--content-media--popout {
  background-color: transparent;
  padding-top: 40px; }
  .row--content-media.row--content-media--popout:not(:first-child) {
    margin-top: -40px; }
  .row--content-media.row--content-media--popout .row__inner {
    width: 100%;
    background-color: #FAFAFB;
    padding: 0; }
  .row--content-media.row--content-media--popout .row__body {
    width: 1180px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative; }
  .row--content-media.row--content-media--popout .row__content-wrap {
    z-index: 2; }
  .row--content-media.row--content-media--popout .row__media figure {
    width: 120%;
    height: 120%;
    margin-top: -40px;
    position: relative;
    right: -20px; }
    .row--content-media.row--content-media--popout .row__media figure img {
      display: block; }
  .row--content-media.row--content-media--popout .row__media figcaption {
    color: #8F99AB;
    right: 40%; }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--content-media.row--content-media--popout {
    padding-top: 30px; }
    .row--content-media.row--content-media--popout:not(:first-child) {
      margin-top: -30px; }
    .row--content-media.row--content-media--popout .row__media figure {
      width: 110%;
      height: 110%;
      margin-top: -30px; }
    .row--content-media.row--content-media--popout .row__media figcaption {
      right: 35%; } }

@media only screen and (max-width: 798px) {
  .row--content-media.row--content-media--popout .row__media figure {
    width: 100%;
    height: 100%;
    margin-top: 0;
    right: 0; }
  .row--content-media.row--content-media--popout .row__media figcaption {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }

@media only screen and (max-width: 588px) {
  .row--content-media.row--content-media--popout .row__media {
    height: auto; } }

.row--tabbed-content .row__inner {
  padding: 40px 0; }

.row--tabbed-content .row__header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 40px; }

.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav,
.row--tabbed-content.row--tabbed-content--media .tabbed-content__nav {
  margin: 0 0 60px;
  font-size: 0;
  line-height: 0; }
  .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li {
    display: inline-block; }
  .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a {
    font-size: 15px;
    line-height: 26px;
    display: block;
    color: #1E396B;
    border: 2px solid #1E396B;
    padding: 10px 25px;
    font-weight: 700; }
    .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a:after,
    .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a:after {
      display: none !important; }
    .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav a:hover,
    .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav a:hover {
      background-color: #f3f5f9; }
  .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li:not(:first-child) a,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li:not(:first-child) a {
    border-left: none; }
  .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li:first-child a,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li:first-child a {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    padding-left: 40px; }
  .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li:last-child a,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li:last-child a {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding-right: 40px; }
  .row--tabbed-content.row--tabbed-content--default .tabbed-content__nav li.r-tabs-state-active a,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__nav li.r-tabs-state-active a {
    color: #fff;
    background-color: #1E396B; }

.row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title,
.row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title {
  margin-bottom: 10px; }
  .row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title a,
  .row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title a {
    display: block !important;
    border: 2px solid #1E396B;
    border-radius: 25px;
    padding: 10px 50px 10px 30px;
    color: #1E396B;
    font-weight: 700;
    position: relative; }
    .row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title a:after,
    .row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title a:after {
      display: none !important; }
    .row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title a:before,
    .row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title a:before {
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'rsc-icons' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "\e900";
      font-size: 8px;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      transition: transform; }
    .row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title a:hover,
    .row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title a:hover {
      background-color: #f3f5f9; }

.row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title.r-tabs-state-active a,
.row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title.r-tabs-state-active a {
  background-color: #1E396B;
  color: #fff; }
  .row--tabbed-content.row--tabbed-content--default .r-tabs-accordion-title.r-tabs-state-active a:before,
  .row--tabbed-content.row--tabbed-content--media .r-tabs-accordion-title.r-tabs-state-active a:before {
    color: #fff;
    transform: translateY(-50%) rotate(180deg); }

@media only screen and (min-width: 799px) and (max-width: 1180px) {
  .row--content-carousel .row__inner,
  .row--tabbed-content.row--tabbed-content--split .row__inner,
  .row--tabbed-content.row--tabbed-content--default .row__inner,
  .row--tabbed-content.row--tabbed-content--media .row__inner {
    padding-left: 40px;
    padding-right: 40px; } }

@media only screen and (max-width: 798px) {
  .row--content-carousel .row__inner,
  .row--tabbed-content.row--tabbed-content--split .row__inner,
  .row--tabbed-content.row--tabbed-content--default .row__inner,
  .row--tabbed-content.row--tabbed-content--media .row__inner {
    padding-left: 20px;
    padding-right: 20px; } }

.row--tabbed-content.row--tabbed-content--default .row__footer {
  padding-top: 20px; }

.row--tabbed-content.row--tabbed-content--default .row__inner {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 40px 0; }

.row--tabbed-content.row--tabbed-content--default .tabbed-content__header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px; }

.row--tabbed-content.row--tabbed-content--default .tabbed-content__nav {
  text-align: center;
  margin: 0 auto 60px; }

.row--tabbed-content.row--tabbed-content--media .row__inner,
.row--tabbed-content.row--tabbed-content--media .row__body,
.row--tabbed-content.row--tabbed-content--media .row__media,
.row--tabbed-content.row--tabbed-content--media .row__content,
.row--tabbed-content.row--tabbed-content--media .image-overlay,
.row--tabbed-content.row--tabbed-content--media .row__body .grid,
.row--tabbed-content.row--tabbed-content--media .row__body .flex-grid,
.row--tabbed-content.row--tabbed-content--media .row__body .grid__item,
.row--tabbed-content.row--tabbed-content--media .row__body .flex-grid__item {
  height: 100%; }

.row--tabbed-content.row--tabbed-content--media .row__inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative; }

.row--tabbed-content.row--tabbed-content--media .row__body:after {
  content: "";
  display: table;
  clear: both; }

.row--tabbed-content.row--tabbed-content--media .row__media.row__media--inline {
  text-align: center; }
  .row--tabbed-content.row--tabbed-content--media .row__media.row__media--inline figure {
    background-image: none !important;
    min-height: 0;
    width: auto;
    height: auto;
    line-height: 0;
    display: inline-block; }
    .row--tabbed-content.row--tabbed-content--media .row__media.row__media--inline figure img {
      display: inline-block !important; }
  .row--tabbed-content.row--tabbed-content--media .row__media.row__media--inline.row__media--multiple figure {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
    .row--tabbed-content.row--tabbed-content--media .row__media.row__media--inline.row__media--multiple figure img {
      max-height: 100%; }

.row--tabbed-content.row--tabbed-content--media .row__media.row__media--fit-contain figure {
  background-size: contain; }

.row--tabbed-content.row--tabbed-content--media .row__media-wrap,
.row--tabbed-content.row--tabbed-content--media .row__content-wrap {
  width: 50%; }

.row--tabbed-content.row--tabbed-content--media .row__media,
.row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media {
  position: relative; }
  .row--tabbed-content.row--tabbed-content--media .row__media figure,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media figure {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 50%; }
    .row--tabbed-content.row--tabbed-content--media .row__media figure img,
    .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media figure img {
      display: none; }
  .row--tabbed-content.row--tabbed-content--media .row__media figcaption,
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media figcaption {
    display: block;
    position: absolute;
    right: -50%;
    bottom: 20%;
    color: #fff;
    transform: rotate(-90deg);
    transform-origin: 0 100%;
    text-align: left;
    width: 60%; }

.row--tabbed-content.row--tabbed-content--media .row__media {
  padding-right: 40px; }
  .row--tabbed-content.row--tabbed-content--media .row__media figure {
    min-height: 500px; }

.row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media {
  margin-bottom: 40px; }
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media figure {
    height: 280px; }

.row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media.tabbed-content__tab-media--inline {
  text-align: center; }
  .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media.tabbed-content__tab-media--inline figure {
    background-image: none !important;
    min-height: 0;
    width: auto;
    height: auto;
    line-height: 0;
    display: inline-block; }
    .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media.tabbed-content__tab-media--inline figure img {
      display: inline-block !important; }

.row--tabbed-content.row--tabbed-content--media .row__media.row__media--multiple figure {
  margin: 0;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s; }
  .row--tabbed-content.row--tabbed-content--media .row__media.row__media--multiple figure.active {
    opacity: 1; }

.row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media {
  display: none; }

.row--tabbed-content.row--tabbed-content--media .row__media-button {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 80px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px 0 rgba(35, 31, 32, 0.4);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s; }
  .row--tabbed-content.row--tabbed-content--media .row__media-button,
  .row--tabbed-content.row--tabbed-content--media .row__media-button .ico,
  .row--tabbed-content.row--tabbed-content--media .row__media-button .fa {
    color: #fff; }
  .row--tabbed-content.row--tabbed-content--media .row__media-button .ico,
  .row--tabbed-content.row--tabbed-content--media .row__media-button .fa {
    display: block;
    transition: all 0.3s; }
  .row--tabbed-content.row--tabbed-content--media .row__media-button:hover, .row--tabbed-content.row--tabbed-content--media .row__media-button:focus, .row--tabbed-content.row--tabbed-content--media .row__media-button:active {
    box-shadow: 0 0 0 0 rgba(35, 31, 32, 0); }
    .row--tabbed-content.row--tabbed-content--media .row__media-button:hover .ico,
    .row--tabbed-content.row--tabbed-content--media .row__media-button:hover .fa, .row--tabbed-content.row--tabbed-content--media .row__media-button:focus .ico,
    .row--tabbed-content.row--tabbed-content--media .row__media-button:focus .fa, .row--tabbed-content.row--tabbed-content--media .row__media-button:active .ico,
    .row--tabbed-content.row--tabbed-content--media .row__media-button:active .fa {
      transform: scale(1.2);
      color: #f47c00; }
    .row--tabbed-content.row--tabbed-content--media .row__media-button:hover + figure img, .row--tabbed-content.row--tabbed-content--media .row__media-button:focus + figure img, .row--tabbed-content.row--tabbed-content--media .row__media-button:active + figure img {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.7;
      transition-duration: 1s; }
  .row--tabbed-content.row--tabbed-content--media .row__media-button + figure {
    z-index: 1;
    background-image: none !important;
    position: relative;
    overflow: hidden; }
    .row--tabbed-content.row--tabbed-content--media .row__media-button + figure img {
      max-width: none;
      min-width: 100%;
      min-height: 100%;
      display: block;
      position: absolute;
      transform: translate(-50%, -50%);
      -webkit-transform-style: preserve-3d;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transition: all 0.6s;
      left: 50%;
      top: 50%; }

.row--tabbed-content.row--tabbed-content--media .image-overlay {
  position: absolute;
  width: auto;
  pointer-events: none; }
  .row--tabbed-content.row--tabbed-content--media .image-overlay > svg {
    position: relative;
    height: 100%;
    width: auto; }

.row--tabbed-content.row--tabbed-content--media .row__content {
  height: 100%;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 60px 140px 60px 40px; }

.row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid--reverse .row__media {
  padding-right: 0;
  padding-left: 40px; }

.row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid--reverse .row__content {
  padding-right: 40px;
  padding-left: 140px; }

@media (min-width: 589px) and (max-width: 1180px) {
  .row--tabbed-content.row--tabbed-content--media .row__media figure {
    background-position: 50%; } }

@media (max-width: 1460px) {
  .row--tabbed-content.row--tabbed-content--media .row__content {
    padding-right: 40px; }
  .row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid--reverse .row__content {
    padding-left: 40px; } }

@media only screen and (max-width: 798px) {
  .row--tabbed-content.row--tabbed-content--media {
    height: auto; }
    .row--tabbed-content.row--tabbed-content--media .row__media-wrap,
    .row--tabbed-content.row--tabbed-content--media .row__content-wrap {
      width: 100%; }
    .row--tabbed-content.row--tabbed-content--media .row__body {
      display: block;
      padding: 0; }
      .row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid {
        margin-left: 0; }
        .row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid .flex-grid__item {
          padding-left: 0; }
    .row--tabbed-content.row--tabbed-content--media .row__media {
      width: 100%;
      position: relative;
      padding: 0;
      display: none; }
      .row--tabbed-content.row--tabbed-content--media .row__media figure {
        min-height: 280px; }
    .row--tabbed-content.row--tabbed-content--media .row__media.row__media--multiple figure {
      min-height: 0; }
    .row--tabbed-content.row--tabbed-content--media .row__media.row__media--inline {
      text-align: center !important; }
    .row--tabbed-content.row--tabbed-content--media .row__content {
      width: 100%;
      height: auto;
      display: block;
      padding: 40px 20px; }
    .row--tabbed-content.row--tabbed-content--media .tabbed-content__tabs__tab {
      padding: 20px 20px 40px; }
    .row--tabbed-content.row--tabbed-content--media .tabbed-content__tab-media {
      display: block; }
  .row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid--reverse .row__content {
    padding-left: 20px;
    padding-right: 20px; }
  .row--tabbed-content.row--tabbed-content--media .row__body > .flex-grid--reverse .row__media {
    padding: 0; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .row--tabbed-content.row--tabbed-content--media .row__media-wrap {
    height: 320px; } }

@media only screen and (max-width: 588px) {
  .row--tabbed-content.row--tabbed-content--media .row__media {
    height: 240px;
    overflow: hidden; }
  .row--tabbed-content.row--tabbed-content--media .row__content {
    padding-top: 40px;
    padding-bottom: 40px; }
    .row--tabbed-content.row--tabbed-content--media .row__content .btn {
      display: block; } }

.row.row--content-carousel.row--bordered .tabbed-content__tabs,
.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs,
.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs {
  border-left: 1px solid #E5EBEF; }

.row.row--content-carousel.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs,
.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs {
  border-left: none;
  border-right: 1px solid #E5EBEF; }

.row.row--content-carousel.row--bordered .tabbed-content__tabs__tab,
.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs__tab,
.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs__tab {
  padding-left: 0 !important; }
  .row.row--content-carousel.row--bordered .tabbed-content__tabs__tab .block,
  .row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs__tab .block,
  .row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs__tab .block {
    padding: 40px 0 40px 40px; }
    .row.row--content-carousel.row--bordered .tabbed-content__tabs__tab .block:first-child,
    .row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs__tab .block:first-child,
    .row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs__tab .block:first-child {
      padding-top: 0 !important; }
    .row.row--content-carousel.row--bordered .tabbed-content__tabs__tab .block:not(:last-child),
    .row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content__tabs__tab .block:not(:last-child),
    .row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content__tabs__tab .block:not(:last-child) {
      border-bottom: 1px solid #E5EBEF; }

.row.row--content-carousel.row--bordered .tabbed-content--nav-right .tabbed-content__tabs__tab,
.row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs__tab,
.row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs__tab {
  padding-right: 0 !important; }
  .row.row--content-carousel.row--bordered .tabbed-content--nav-right .tabbed-content__tabs__tab .block,
  .row--tabbed-content.row--tabbed-content--split.row--bordered .tabbed-content--nav-right .tabbed-content__tabs__tab .block,
  .row--tabbed-content.row--tabbed-content--posts.row--bordered .tabbed-content--nav-right .tabbed-content__tabs__tab .block {
    padding: 40px 40px 40px 0; }

.row.row--content-carousel.bg-tertiary-lightest .tabbed-content__nav a,
.row--tabbed-content.row--tabbed-content--split.bg-tertiary-lightest .tabbed-content__nav a,
.row--tabbed-content.row--tabbed-content--posts.bg-tertiary-lightest .tabbed-content__nav a {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 10px 10px 50px rgba(35, 31, 32, 0); }
  .row.row--content-carousel.bg-tertiary-lightest .tabbed-content__nav a:hover,
  .row--tabbed-content.row--tabbed-content--split.bg-tertiary-lightest .tabbed-content__nav a:hover,
  .row--tabbed-content.row--tabbed-content--posts.bg-tertiary-lightest .tabbed-content__nav a:hover {
    background-color: white; }

.row.row--content-carousel.bg-tertiary-lightest .tabbed-content__nav li.r-tabs-state-active a,
.row--tabbed-content.row--tabbed-content--split.bg-tertiary-lightest .tabbed-content__nav li.r-tabs-state-active a,
.row--tabbed-content.row--tabbed-content--posts.bg-tertiary-lightest .tabbed-content__nav li.r-tabs-state-active a {
  background-color: white;
  box-shadow: 10px 10px 50px rgba(35, 31, 32, 0.05); }

.row.row--content-carousel .row__inner,
.row--tabbed-content.row--tabbed-content--split .row__inner,
.row--tabbed-content.row--tabbed-content--posts .row__inner {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  position: relative; }

.row.row--content-carousel .tabbed-content,
.row--tabbed-content.row--tabbed-content--split .tabbed-content,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }

.row.row--content-carousel .tabbed-content__nav,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav {
  width: 50%; }

.row.row--content-carousel .tabbed-content__tabs,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs {
  width: 50%; }

.row.row--content-carousel .tabbed-content__nav li,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav li,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav li {
  display: block;
  margin-bottom: 15px; }

.row.row--content-carousel .tabbed-content__nav a,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a {
  display: block;
  width: 100%;
  color: #1E396B;
  font-weight: 700;
  padding: 20px 40px;
  min-height: 110px;
  border-radius: 5px;
  background-color: rgba(245, 247, 248, 0); }
  .row.row--content-carousel .tabbed-content__nav a:after,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:after,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:after {
    display: none !important; }
  .row.row--content-carousel .tabbed-content__nav a:hover,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content__nav a:hover,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav a:hover {
    background-color: #fafafb; }

.row.row--content-carousel .tabbed-content__nav li.r-tabs-state-active a,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav li.r-tabs-state-active a,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav li.r-tabs-state-active a {
  background-color: #f5f7f8; }

.row.row--content-carousel .tabbed-content__nav-title,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav-title,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav-title {
  font-size: 16px;
  font-weight: 700; }

.row.row--content-carousel .tabbed-content__nav-subtitle,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav-subtitle,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav-subtitle {
  color: #8F99AB;
  font-weight: 400; }

.row.row--content-carousel .r-tabs-accordion-title,
.row--tabbed-content.row--tabbed-content--split .r-tabs-accordion-title,
.row--tabbed-content.row--tabbed-content--posts .r-tabs-accordion-title {
  margin-bottom: 10px; }
  .row.row--content-carousel .r-tabs-accordion-title .tabbed-content__nav-subtitle,
  .row--tabbed-content.row--tabbed-content--split .r-tabs-accordion-title .tabbed-content__nav-subtitle,
  .row--tabbed-content.row--tabbed-content--posts .r-tabs-accordion-title .tabbed-content__nav-subtitle {
    display: none; }
  .row.row--content-carousel .r-tabs-accordion-title a,
  .row--tabbed-content.row--tabbed-content--split .r-tabs-accordion-title a,
  .row--tabbed-content.row--tabbed-content--posts .r-tabs-accordion-title a {
    display: block !important;
    border-radius: 5px;
    padding: 15px 50px 15px 20px;
    color: #1E396B;
    position: relative;
    background-color: white;
    box-shadow: 10px 10px 50px rgba(35, 31, 32, 0.05);
    border: 1px solid #fff; }
    .row.row--content-carousel .r-tabs-accordion-title a:after,
    .row--tabbed-content.row--tabbed-content--split .r-tabs-accordion-title a:after,
    .row--tabbed-content.row--tabbed-content--posts .r-tabs-accordion-title a:after {
      display: none !important; }
    .row.row--content-carousel .r-tabs-accordion-title a:before,
    .row--tabbed-content.row--tabbed-content--split .r-tabs-accordion-title a:before,
    .row--tabbed-content.row--tabbed-content--posts .r-tabs-accordion-title a:before {
      /* use !important to prevent issues with browser extensions that change fonts */
      font-family: 'rsc-icons' !important;
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      content: "\e900";
      font-size: 8px;
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(0deg);
      transition: transform; }
    .row.row--content-carousel .r-tabs-accordion-title a:hover,
    .row--tabbed-content.row--tabbed-content--split .r-tabs-accordion-title a:hover,
    .row--tabbed-content.row--tabbed-content--posts .r-tabs-accordion-title a:hover {
      background-color: #FAFAFB; }

.row.row--content-carousel .tabbed-content__tabs__tab,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs__tab,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs__tab {
  padding-left: 40px; }
  .row.row--content-carousel .tabbed-content__tabs__tab .block.block--post,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs__tab .block.block--post,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs__tab .block.block--post {
    padding-bottom: 40px; }
    .row.row--content-carousel .tabbed-content__tabs__tab .block.block--post:not(:last-child),
    .row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs__tab .block.block--post:not(:last-child),
    .row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs__tab .block.block--post:not(:last-child) {
      margin-bottom: 40px;
      border-bottom: 1px solid #E5EBEF; }

.row.row--content-carousel .tabbed-content__nav,
.row--tabbed-content.row--tabbed-content--split .tabbed-content__nav,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav {
  padding-right: 40px; }

.row.row--content-carousel .tabbed-content--nav-right,
.row--tabbed-content.row--tabbed-content--split .tabbed-content--nav-right,
.row--tabbed-content.row--tabbed-content--posts .tabbed-content--nav-right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
  .row.row--content-carousel .tabbed-content--nav-right .tabbed-content__tabs__tab,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content--nav-right .tabbed-content__tabs__tab,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content--nav-right .tabbed-content__tabs__tab {
    padding-left: 0;
    padding-right: 40px; }
  .row.row--content-carousel .tabbed-content--nav-right .tabbed-content__nav,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content--nav-right .tabbed-content__nav,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content--nav-right .tabbed-content__nav {
    padding-right: 0;
    padding-left: 40px; }

@media only screen and (min-width: 799px) and (max-width: 1180px) {
  .row.row--content-carousel .tabbed-content__nav,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content__nav,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav {
    width: 40%; }
  .row.row--content-carousel .tabbed-content__tabs,
  .row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs,
  .row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs {
    width: 60%; } }

@media only screen and (max-width: 798px) {
  .row.row--content-carousel,
  .row--tabbed-content.row--tabbed-content--split,
  .row--tabbed-content.row--tabbed-content--posts {
    display: block; }
    .row.row--content-carousel .tabbed-content__nav,
    .row.row--content-carousel .tabbed-content__tabs,
    .row--tabbed-content.row--tabbed-content--split .tabbed-content__nav,
    .row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs,
    .row--tabbed-content.row--tabbed-content--posts .tabbed-content__nav,
    .row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs {
      width: 100%; }
    .row.row--content-carousel .tabbed-content__tabs__tab,
    .row--tabbed-content.row--tabbed-content--split .tabbed-content__tabs__tab,
    .row--tabbed-content.row--tabbed-content--posts .tabbed-content__tabs__tab {
      padding: 20px 0 40px 20px; }
    .row.row--content-carousel .tabbed-content--nav-right .tabbed-content__tabs__tab,
    .row--tabbed-content.row--tabbed-content--split .tabbed-content--nav-right .tabbed-content__tabs__tab,
    .row--tabbed-content.row--tabbed-content--posts .tabbed-content--nav-right .tabbed-content__tabs__tab {
      padding-right: 0;
      padding-left: 20px; } }

.row.row--gallery .row__inner {
  padding-bottom: 40px; }

.row.row--gallery .row__media .flex-grid__item {
  margin-bottom: 40px; }

#lightcase-overlay {
  background: #fff; }

#lightcase-info #lightcase-sequenceInfo {
  color: #8F99AB; }

#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  color: #1E396B; }

#lightcase-case {
  text-shadow: none; }

.lightcase-icon-close:before,
.lightcase-icon-prev:before,
.lightcase-icon-next:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'rsc-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lightcase-icon-prev:before,
.lightcase-icon-next:before {
  font-size: 44px;
  color: #8F99AB;
  height: 45px;
  width: 40px; }

.lightcase-icon-close:before {
  font-size: 30px;
  content: "\e907";
  color: #f47c00; }

.lightcase-icon-prev:before {
  content: "\e901"; }

.lightcase-icon-next:before {
  content: "\e902"; }

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #lightcase-content {
    box-shadow: 5px 5px 20px 0 rgba(35, 31, 32, 0.2); }
  html[data-lc-type=image] #lightcase-content,
  html[data-lc-type=video] #lightcase-content {
    background-color: #fff; } }

.row.row--gallery.row--gallery--grid .flex-grid {
  -ms-flex-pack: center;
  justify-content: center; }

.row.row--gallery.row--gallery--slider .row__inner {
  padding-bottom: 80px; }

.row.row--gallery.row--gallery--slider .block.block--image .block__media {
  text-align: center; }
  .row.row--gallery.row--gallery--slider .block.block--image .block__media figure {
    line-height: 0; }
    .row.row--gallery.row--gallery--slider .block.block--image .block__media figure img {
      display: inline-block;
      opacity: 1; }

.row.row--columns .row__inner {
  padding-bottom: 40px; }

.row.row--columns .row__content .flex-grid {
  margin-left: -40px; }

.row.row--columns .row__content .flex-grid__item {
  padding-left: 40px;
  margin-bottom: 40px; }

.row.row--content-grid .row__inner {
  padding-top: 80px;
  padding-bottom: 120px; }

.row.row--content-grid .row__header {
  padding-bottom: 80px;
  margin-bottom: 10px; }

.row.row--content-grid .block {
  margin-bottom: 20px; }

.row.row--content-grid .block__header h1, .row.row--content-grid .block__header h1 a {
  color: #1E396B; }

.row.row--content-grid .block__media {
  margin-bottom: 20px; }
  .row.row--content-grid .block__media figure {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
    border-radius: 4px;
    position: relative; }
    .row.row--content-grid .block__media figure a {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      z-index: 1; }
    .row.row--content-grid .block__media figure img {
      display: none; }

.row.row--content-carousel {
  /*
	.tabbed-content__tabs__tab.r-tabs-state-active {
		.block.block--image-tile > * {
			opacity: 1;
			transition-delay: $transition-duration;
		}
	}
	*/ }
  .row.row--content-carousel .row__inner {
    padding-top: 90px;
    padding-bottom: 90px; }
  .row.row--content-carousel .tabbed-content__tabs {
    width: 66.666%; }
  .row.row--content-carousel .tabbed-content__nav {
    width: 33.333%;
    padding-right: 20px; }
  .row.row--content-carousel .tabbed-content--nav-right .tabbed-content__nav {
    padding-left: 20px; }
  .row.row--content-carousel .tabbed-content--nav-right .tabbed-content__tabs__tab {
    padding-right: 0; }
  .row.row--content-carousel .tabbed-content__nav a {
    min-height: 140px;
    padding-left: 20px;
    padding-right: 40px; }
  .row.row--content-carousel .tabbed-content__nav li:last-child {
    margin-bottom: 0; }
  .row.row--content-carousel .tabbed-content__nav-title {
    font-size: 17px;
    line-height: 1; }
  .row.row--content-carousel .block.block--image-tile {
    background-color: #1E396B;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    position: relative;
    border-radius: 4px;
    width: 100%;
    height: 450px;
    padding: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column; }
    .row.row--content-carousel .block.block--image-tile,
    .row.row--content-carousel .block.block--image-tile p,
    .row.row--content-carousel .block.block--image-tile h1, .row.row--content-carousel .block.block--image-tile h2, .row.row--content-carousel .block.block--image-tile h3, .row.row--content-carousel .block.block--image-tile h5, .row.row--content-carousel .block.block--image-tile h6, .row.row--content-carousel .block.block--image-tile .h1, .row.row--content-carousel .block.block--image-tile .h2, .row.row--content-carousel .block.block--image-tile .h3, .row.row--content-carousel .block.block--image-tile .h5, .row.row--content-carousel .block.block--image-tile .h6 {
      color: #fff;
      margin-bottom: 5px;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); }
      .row.row--content-carousel .block.block--image-tile .btn,
      .row.row--content-carousel .block.block--image-tile p .btn,
      .row.row--content-carousel .block.block--image-tile h1 .btn, .row.row--content-carousel .block.block--image-tile h2 .btn, .row.row--content-carousel .block.block--image-tile h3 .btn, .row.row--content-carousel .block.block--image-tile h5 .btn, .row.row--content-carousel .block.block--image-tile h6 .btn, .row.row--content-carousel .block.block--image-tile .h1 .btn, .row.row--content-carousel .block.block--image-tile .h2 .btn, .row.row--content-carousel .block.block--image-tile .h3 .btn, .row.row--content-carousel .block.block--image-tile .h5 .btn, .row.row--content-carousel .block.block--image-tile .h6 .btn {
        text-shadow: none; }
    .row.row--content-carousel .block.block--image-tile p:last-child {
      padding-top: 20px; }
    .row.row--content-carousel .block.block--image-tile > * {
      position: relative;
      z-index: 2;
      /*
			@include transform-performance;
			transition: opacity 1s linear;
			opacity: 0;
			transition-delay: 0s;
			*/ }
    .row.row--content-carousel .block.block--image-tile:not(.block--no-image):before {
      content: "";
      pointer-events: none;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.6;
      background: linear-gradient(187.35deg, transparent 0%, #000000 100%); }

@media all and (min-width: 799px) and (max-width: 1024px) {
  .row.row--content-carousel .tabbed-content__nav,
  .row.row--content-carousel .tabbed-content__tabs {
    width: 50%; } }

@media all and (max-width: 799px) {
  .row.row--content-carousel .tabbed-content__nav,
  .row.row--content-carousel .tabbed-content__tabs {
    width: 100%; }
  .row.row--content-carousel .tabbed-content__tabs__tab {
    padding: 0 !important; }
  .row.row--content-carousel .tabbed-content--nav-right .tabbed-content__tabs__tab {
    padding-left: 0; }
  .row.row--content-carousel .r-tabs .r-tabs-accordion-title {
    display: none !important; } }

/*
.row.row--content-carousel {

	.row__content.row__content--bordered {

		padding-top: 60px;

		.flex-grid__item.one-half {
			.block {
				padding-top: 70px;
				padding-bottom: 70px;
				border-top: 1px solid #E5EBEF;
			}
			&:nth-child(1) .block,
			&:nth-child(2) .block {
				border-top: none;
			}
			&:nth-child(odd) .block {
				border-right: 1px solid #E5EBEF;
			}
		}
	}

	.block {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.block__media {
		margin-bottom: $base-spacing-unit;
		width: 100px;
		height: 100px;
		display: inline-block;
		figure {
			display: inline-block;
			width: 100%;
			height: 100%;
			border-radius: 50%;
			background-color: $tertiary-color-lightest;
			background-position: 50%;
			background-repeat: no-repeat;
			background-size: cover;
			img {
				@include accessibility;
			}
		}
	}

	.flex-grid__item.one-half {
		&:nth-child(odd) .block {
			padding-right: 60px;
			text-align: right;
		}
		&:nth-child(even) .block {
			padding-left: 60px;
		}
	}


}

@media only screen and (min-width:$desk-start) and (max-width:$site-width) {

	.row.row--content-carousel {
		.flex-grid__item.one-half {
			&:nth-child(odd) .block,
			&:nth-child(even) .block {
				padding: 40px;
			}
		}
	}

}

@include media-query(portable) {

	.row.row--content-carousel {

		.row__content.row__content--bordered {
			.flex-grid__item.portable-one-whole {
				&:nth-child(2) .block {
					border-top: 1px solid #E5EBEF;
				}
				&:nth-child(odd) .block {
					border-right: none;
				}
			}
		}

		.flex-grid__item.one-half {
			&:nth-child(odd) .block,
			&:nth-child(even) .block {
				padding: 40px;
				text-align: center;
			}
		}

	}

}
*/
.row.row--form.row--form--columns .row__inner {
  padding-bottom: 40px; }

.row.row--form.row--form--columns .row__content .flex-grid {
  margin-left: -40px; }

.row.row--form.row--form--columns .row__content .flex-grid__item {
  padding-left: 40px;
  margin-bottom: 40px; }

.row.row--demo-short-form .row__header {
  margin-bottom: 30px; }

.row.row--demo-short-form .row__footer {
  padding-top: 30px; }

.row.row--demo-short-form .row__inner {
  padding-top: 100px;
  padding-bottom: 120px; }

.row.row--demo-short-form .block.block--form {
  max-width: 100%;
  width: 780px;
  margin: 0 auto; }

.row.row--demo-short-form .gform_form > form:after {
  content: "";
  display: table;
  clear: both; }

.row.row--demo-short-form .gform_body {
  float: left;
  width: 74%; }

.row.row--demo-short-form .gform_footer {
  float: right;
  width: 25%;
  padding: 0 0 0 10px !important; }

.row.row--demo-short-form .gfield {
  margin-bottom: 0 !important; }

.row.row--demo-short-form .gform_heading {
  text-align: center; }

.row.row--demo-short-form .gform_title {
  font-size: 30px; }

.row.row--demo-short-form .gform_description {
  font-size: 17px; }

.row.row--demo-short-form .gform_button.btn {
  min-width: 0;
  width: 100%;
  padding: 16px 30px; }

.row.row--demo-short-form .validation_error {
  text-align: center; }

@media only screen and (max-width: 798px) {
  .row.row--demo-short-form .gform_body,
  .row.row--demo-short-form .gform_footer {
    float: none;
    width: 100%; }
  .row.row--demo-short-form .gform_footer {
    padding: 20px 0 0 0 !important; } }

@media only screen and (max-width: 588px) {
  .row.row--demo-short-form .gfield {
    margin-bottom: 20px !important; } }

.row.row--next-previous {
  background-color: #fff; }
  .row.row--next-previous.row--bordered {
    border-top: 1px solid #e5ebef;
    border-bottom: 1px solid #e5ebef; }
  .row.row--next-previous .row__inner {
    padding: 0; }
  .row.row--next-previous .next-previous {
    white-space: normal;
    min-height: 170px;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    transition: all 0.3s; }
    .row.row--next-previous .next-previous:hover, .row.row--next-previous .next-previous:focus {
      background-color: #FAFAFB; }
  .row.row--next-previous .next-previous--previous {
    padding-right: 40px;
    text-align: left; }
    .row.row--next-previous .next-previous--previous .next-previous__icon {
      margin-right: 40px; }
    .row.row--next-previous .next-previous--previous:hover, .row.row--next-previous .next-previous--previous:focus {
      padding-left: 40px;
      padding-right: 0; }
  .row.row--next-previous .next-previous--next {
    padding-left: 40px;
    text-align: right;
    border-left: 1px solid #e5ebef;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    .row.row--next-previous .next-previous--next .next-previous__icon {
      margin-left: 40px; }
    .row.row--next-previous .next-previous--next:hover, .row.row--next-previous .next-previous--next:focus {
      padding-right: 40px;
      padding-left: 0; }
  .row.row--next-previous .next-previous__icon {
    font-size: 30px;
    transition: all 0.3s; }
  .row.row--next-previous .next-previous__label {
    max-width: calc(100% - 66px);
    margin: 0 !important; }
  .row.row--next-previous .next-previous__label__surtitle,
  .row.row--next-previous .next-previous__label__title {
    display: block; }
  .row.row--next-previous .next-previous__label__surtitle {
    font-weight: 400; }
  .row.row--next-previous .next-previous__label__title {
    color: #1E396B;
    font-size: 30px;
    font-weight: 700; }
  .row.row--next-previous .next-previous__label__surtitle + br {
    display: none; }

@media (max-width: 1180px) {
  .row.row--next-previous .next-previous--previous {
    padding-left: 20px; }
  .row.row--next-previous .next-previous--next {
    padding-right: 20px; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .row.row--next-previous .next-previous__icon {
    -ms-flex: 1;
    flex: 1; }
  .row.row--next-previous .next-previous--previous {
    padding-left: 20px;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column; }
  .row.row--next-previous .next-previous--next {
    padding-right: 20px;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -ms-flex-align: end;
    align-items: flex-end; }
  .row.row--next-previous .next-previous__label__title {
    font-size: 25px; } }

@media only screen and (max-width: 588px) {
  .row.row--next-previous .next-previous {
    display: block;
    text-align: center; }
  .row.row--next-previous .next-previous--previous,
  .row.row--next-previous .next-previous--next {
    padding: 40px; }
  .row.row--next-previous .next-previous--next {
    border-left: none;
    border-top: 1px solid #e5ebef; }
    .row.row--next-previous .next-previous--next:hover .next-previous__icon, .row.row--next-previous .next-previous--next:focus .next-previous__icon {
      margin-left: 40px !important; }
  .row.row--next-previous .next-previous--previous:hover .next-previous__icon, .row.row--next-previous .next-previous--previous:focus .next-previous__icon {
    margin-right: 40px !important; }
  .row.row--next-previous .next-previous__icon {
    display: inline-block !important; }
  .row.row--next-previous .next-previous--previous .next-previous__icon {
    margin: 0 0 20px 0 !important; }
  .row.row--next-previous .next-previous--next .next-previous__icon {
    margin: 20px 0 0 0 !important; }
  .row.row--next-previous .next-previous__label {
    display: block !important;
    max-width: 100%; }
  .row.row--next-previous .next-previous__label__title {
    font-size: 25px; } }

.row.row--resource-finder .row__header {
  width: 890px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px; }
  .row.row--resource-finder .row__header h3:first-child {
    margin-bottom: 0; }
  .row.row--resource-finder .row__header h3 + h4 {
    padding-top: 0; }

.resource-finder:not(.resource-finder--mini) .resource-finder__form {
  position: relative;
  margin-top: 40px;
  margin-bottom: 46px; }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form:before, .resource-finder:not(.resource-finder--mini) .resource-finder__form:after {
    content: "";
    font-size: 0;
    line-height: 0;
    width: 2px;
    background-color: #86A0C2;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form:before {
    top: -20px;
    height: 20px; }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form:after {
    bottom: -52px;
    height: 52px; }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form .resource-finder__field {
    position: relative; }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form #resource_finder_industry_field:before,
  .resource-finder:not(.resource-finder--mini) .resource-finder__form #resource_finder_outcome_field:after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'rsc-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e905";
    font-size: 20px;
    color: #86A0C2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form #resource_finder_industry_field:before {
    top: -75px; }
  .resource-finder:not(.resource-finder--mini) .resource-finder__form #resource_finder_outcome_field:after {
    bottom: -106px; }

.resource-finder__form {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #EEEFF1;
  padding: 35px 30px;
  width: 580px;
  max-width: 100%;
  margin: 0 auto 40px;
  box-shadow: 10px 10px 50px 0 rgba(35, 31, 32, 0.1); }

.resource-finder__field {
  position: relative;
  border-radius: 5px;
  padding: 10px 20px 10px 40px;
  color: #fff;
  background-color: #1E396B;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center; }
  .resource-finder__field:after {
    content: "";
    display: table;
    clear: both; }
  .resource-finder__field#resource_finder_outcome_field {
    background-color: #f47c00;
    margin-left: 30px;
    margin-right: 30px; }

.resource-finder__field + .resource-finder__field {
  margin-top: 30px; }

.resource-finder__label {
  display: inline-block;
  border-right: 1px solid #fff;
  padding-right: 20px;
  position: relative;
  top: 10px;
  margin: 0;
  line-height: 2; }

.resource-finder__input-container {
  -ms-flex: 1;
  flex: 1;
  position: relative; }
  .resource-finder__input-container .customSelect {
    border: none;
    background-color: transparent;
    color: #fff;
    height: auto;
    padding-left: 20px; }
  .resource-finder__input-container .customSelectInner {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2; }
  .resource-finder__input-container .customSelectInner:after {
    color: #fff;
    font-size: 12px; }

.resource-finder.waiting .resource-finder__results {
  min-height: 30px; }
  .resource-finder.waiting .resource-finder__results:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../../revtrac/images/spinner.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10; }

.resource-finder__results {
  margin-bottom: 40px;
  position: relative; }
  .resource-finder__results .block {
    width: 490px;
    max-width: 100%;
    margin: 0 auto 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #EEEFF1;
    box-shadow: 10px 10px 50px 0 rgba(35, 31, 32, 0.1);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s; }
    .resource-finder__results .block:hover {
      border-color: #d2d5da; }
      .resource-finder__results .block:hover .block__header h6 a {
        color: #f47c00; }
  .resource-finder__results .block__header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0; }
    .resource-finder__results .block__header:after {
      content: "";
      display: table;
      clear: both; }
    .resource-finder__results .block__header h6 {
      -ms-flex: 1;
      flex: 1;
      margin-bottom: 10px;
      color: #1E396B; }
      .resource-finder__results .block__header h6 a {
        white-space: normal;
        text-align: left;
        line-height: 1.4; }
        .resource-finder__results .block__header h6 a, .resource-finder__results .block__header h6 a:visited {
          color: #1E396B; }
        .resource-finder__results .block__header h6 a:focus, .resource-finder__results .block__header h6 a:hover, .resource-finder__results .block__header h6 a:active {
          color: #f47c00; }
  .resource-finder__results .block__meta {
    padding: 0;
    margin: 0;
    position: relative;
    top: -4px; }
  .resource-finder__results .block__content {
    line-height: 1.5; }

.resource-finder__footer {
  text-align: center; }
  .resource-finder__footer .nav li:not(:first-child) {
    margin-left: 20px; }

#row_hero_resources .row__content {
  padding-bottom: 60px; }

#row_hero_resources .row__body > .resource-finder.resource-finder--mini {
  z-index: 9;
  position: relative;
  right: auto;
  bottom: -32px; }

/*
@media (max-width: $site-width) {
	#row_hero_resources {
		.row__content {
			padding-bottom: $double-spacing;
		}
		.row__body > .resource-finder.resource-finder--mini {
			position: relative;
			bottom: auto;
			right: auto;
			margin-bottom: $double-spacing;
		}
	}
}
*/
@media only screen and (max-width: 588px) {
  #row_hero_resources .row__content {
    padding-bottom: 40px; }
  #row_hero_resources .row__body > .resource-finder.resource-finder--mini .resource-finder__title {
    text-align: center; }
  #row_hero_resources .row__body > .resource-finder.resource-finder--mini .resource-finder__field {
    width: 100%;
    -ms-flex: auto;
    flex: auto;
    margin: 0 0 10px; }
  #row_hero_resources .row__body > .resource-finder.resource-finder--mini .resource-finder__submit {
    width: 100%;
    margin: 0; } }

.resource-finder.resource-finder--mini .resource-finder__title {
  width: 100%;
  margin-bottom: 10px; }

.resource-finder.resource-finder--mini .resource-finder__form {
  box-shadow: 5px 5px 25px 0 rgba(35, 31, 32, 0.1);
  padding: 15px;
  margin: 0;
  width: 340px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }

.resource-finder.resource-finder--mini .resource-finder__field {
  padding: 5px 10px 5px 10px;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff !important;
  border: 1px solid #EEEFF1; }

.resource-finder.resource-finder--mini .resource-finder__field#resource_finder_outcome_field {
  margin-left: 0;
  margin-right: 0; }

.resource-finder.resource-finder--mini .resource-finder__submit {
  margin-left: 10px;
  width: 80px; }
  .resource-finder.resource-finder--mini .resource-finder__submit > .btn {
    width: 100%;
    min-width: 0;
    min-height: 41px;
    padding: 10px 0;
    font-size: 12px; }

.resource-finder.resource-finder--mini .resource-finder__field + .resource-finder__field {
  margin-top: 0; }

.resource-finder.resource-finder--mini .resource-finder__input-container .customSelect {
  padding: 6px 6px 0 6px;
  color: #1E396B; }

.resource-finder.resource-finder--mini .resource-finder__input-container .customSelectInner {
  font-size: 12px;
  text-align: left; }
  .resource-finder.resource-finder--mini .resource-finder__input-container .customSelectInner:after {
    font-size: 8px;
    color: #8F99AB; }

@media only screen and (max-width: 798px) {
  .resource-finder:not(.resource-finder--mini) .resource-finder__form {
    margin-bottom: 45px; }
    .resource-finder:not(.resource-finder--mini) .resource-finder__form #resource_finder_industry_field:before {
      top: -60px; }
    .resource-finder:not(.resource-finder--mini) .resource-finder__form #resource_finder_outcome_field:after {
      bottom: -90px; }
  /*
	.resource-finder__field,
	.resource-finder__input-container {
		display: block;
		width: 100%;
	}
	*/
  .resource-finder__form {
    padding: 20px; }
  .resource-finder__field {
    padding-left: 20px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center; }
    .resource-finder__field#resource_finder_outcome_field {
      margin-left: 0;
      margin-right: 0; }
  .resource-finder__field + .resource-finder__field {
    margin-top: 10px; }
  .resource-finder__input-container {
    width: 100%; }
    .resource-finder__input-container .customSelectInner {
      text-align: center; }
  .resource-finder__label {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-right: 0;
    text-align: center;
    margin-bottom: 10px; } }

.events-filter__title {
  width: 100%;
  margin-bottom: 10px; }

.events-filter__form {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #EEEFF1;
  max-width: 100%;
  box-shadow: 5px 5px 25px 0 rgba(35, 31, 32, 0.1);
  padding: 15px;
  margin: 0;
  width: 340px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }

.events-filter__field {
  position: relative;
  border-radius: 5px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 10px 5px 10px;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff !important;
  border: 1px solid #EEEFF1; }
  .events-filter__field:after {
    content: "";
    display: table;
    clear: both; }

.events-filter__field + .events-filter__field {
  margin-top: 0; }

.events-filter__field#events_filter_type_field {
  margin-left: 0;
  margin-right: 0; }

.events-filter__label {
  display: inline-block;
  border-right: 1px solid #fff;
  padding-right: 20px;
  position: relative;
  top: 10px;
  margin: 0;
  line-height: 2; }

.events-filter__input-container {
  -ms-flex: 1;
  flex: 1;
  position: relative; }
  .events-filter__input-container .customSelect {
    border: none;
    background-color: transparent;
    height: auto;
    padding: 6px 6px 0 6px;
    color: #1E396B; }
  .events-filter__input-container .customSelectInner {
    font-weight: 700;
    line-height: 1.2;
    font-size: 12px;
    text-align: left; }
  .events-filter__input-container .customSelectInner:after {
    font-size: 8px;
    color: #8F99AB; }

.events-filter__submit {
  margin-left: 10px;
  width: 80px; }
  .events-filter__submit > .btn {
    width: 100%;
    min-width: 0;
    min-height: 41px;
    padding: 10px 0;
    font-size: 12px; }

#row_hero_events .row__content {
  padding-bottom: 60px; }

#row_hero_events .row__body > .events-filter {
  z-index: 9;
  position: relative;
  right: auto;
  bottom: -32px; }

@media only screen and (max-width: 588px) {
  #row_hero_events .row__content {
    padding-bottom: 40px; }
  #row_hero_events .row__body > .events-filter .events-filter__title {
    text-align: center; }
  #row_hero_events .row__body > .events-filter .events-filter__field {
    width: 100%;
    -ms-flex: auto;
    flex: auto;
    margin: 0 0 10px; }
  #row_hero_events .row__body > .events-filter .events-filter__submit {
    width: 100%;
    margin: 0; } }

@media only screen and (max-width: 798px) {
  .events-filter__form {
    padding: 20px; }
  .events-filter__field {
    padding-left: 20px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center; }
    .events-filter__field#events_filter_type_field {
      margin-left: 0;
      margin-right: 0; }
  .events-filter__field + .events-filter__field {
    margin-top: 10px; }
  .events-filter__input-container {
    width: 100%; }
    .events-filter__input-container .customSelectInner {
      text-align: center; }
  .events-filter__label {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-right: 0;
    text-align: center;
    margin-bottom: 10px; } }

.row.row--outcomes {
  border-top: 1px solid #EEEFF1;
  border-bottom: 1px solid #EEEFF1;
  background-color: #fff; }
  .row.row--outcomes:not(.row-ready) {
    opacity: 0;
    display: block; }
  .row.row--outcomes.row-ready {
    display: none; }
  .row.row--outcomes .row__inner {
    padding-top: 0;
    padding-bottom: 0; }
  .row.row--outcomes .swiper-container.swiper-multi-column .swiper-wrapper,
  .row.row--outcomes .swiper-container.swiper-multi-column .swiper-slide {
    -ms-flex-align: start;
    align-items: flex-start; }
  .row.row--outcomes .swiper-button-next.swiper-button-disabled,
  .row.row--outcomes .swiper-button-prev.swiper-button-disabled {
    opacity: 0; }
  .row.row--outcomes .row__body {
    padding-top: 70px; }
  .row.row--outcomes .row__footer {
    width: 720px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 60px;
    text-align: center; }
  .row.row--outcomes .tab__footer {
    padding-top: 50px;
    padding-bottom: 60px;
    border-top: 1px solid #EEEFF1;
    margin-top: 60px; }
  .row.row--outcomes .tab__footer .wrap {
    width: 720px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center; }
  .row.row--outcomes .tabbed-content__nav {
    width: 1180px;
    max-width: 100%;
    margin: 0 auto 60px; }
    .row.row--outcomes .tabbed-content__nav .r-tabs-tab:not(:first-child) {
      margin-left: 40px; }
    .row.row--outcomes .tabbed-content__nav .r-tabs-anchor {
      display: inline;
      position: relative;
      font-weight: 700; }
      .row.row--outcomes .tabbed-content__nav .r-tabs-anchor:after {
        content: "";
        font-size: 0;
        line-height: 0;
        width: 0;
        height: 1px;
        display: block;
        overflow: hidden;
        position: absolute;
        left: 50%;
        bottom: -2px;
        right: 0;
        will-change: width, background-color;
        transition: width 0.3s, background-color 0.3s;
        transform: translateX(-50%);
        background-color: rgba(244, 124, 0, 0); }
      .row.row--outcomes .tabbed-content__nav .r-tabs-anchor:focus:after, .row.row--outcomes .tabbed-content__nav .r-tabs-anchor:active:after, .row.row--outcomes .tabbed-content__nav .r-tabs-anchor:hover:after {
        width: 100%;
        background-color: #f47c00; }
      .row.row--outcomes .tabbed-content__nav .r-tabs-anchor:after {
        height: 2px;
        bottom: 0; }
    .row.row--outcomes .tabbed-content__nav .r-tabs-state-active .r-tabs-anchor:after {
      width: 100%;
      background-color: #f47c00; }
  .row.row--outcomes .r-tabs-accordion-title {
    margin: 0 20px 10px; }
    .row.row--outcomes .r-tabs-accordion-title a {
      display: block !important;
      border: 2px solid #1E396B;
      border-radius: 25px;
      padding: 10px 50px 10px 30px;
      color: #1E396B;
      font-weight: 700;
      position: relative; }
      .row.row--outcomes .r-tabs-accordion-title a:after {
        display: none !important; }
      .row.row--outcomes .r-tabs-accordion-title a:before {
        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'rsc-icons' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e900";
        font-size: 8px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform; }
      .row.row--outcomes .r-tabs-accordion-title a:hover {
        background-color: #f3f5f9; }
  .row.row--outcomes .r-tabs-accordion-title.r-tabs-state-active a {
    background-color: #1E396B;
    color: #fff; }
    .row.row--outcomes .r-tabs-accordion-title.r-tabs-state-active a:before {
      color: #fff;
      transform: translateY(-50%) rotate(180deg); }

#outcomes_close {
  position: absolute;
  right: 40px; }

@media only screen and (max-width: 798px) {
  #outcomes_close {
    top: 20px; }
  .row.row--outcomes .row__body {
    padding-bottom: 40px; }
  .row.row--outcomes .swiper-wrapper.wrap {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .row.row--outcomes .swiper-slide {
    padding: 0 50px 0 50px; }
  .row.row--outcomes .swiper-button-prev,
  .row.row--outcomes .swiper-container-rtl .swiper-button-next {
    left: 0; }
  .row.row--outcomes .swiper-button-next,
  .row.row--outcomes .swiper-container-rtl .swiper-button-prev {
    right: 0; } }

.row--calculator {
  /*
	&:not(.calculated):not(.calculating) {
		.calculator__results {
			opacity: 0;
		}
	}
	*/ }
  .row--calculator .row__inner,
  .row--calculator .row__body,
  .row--calculator .row__media,
  .row--calculator .row__content,
  .row--calculator .image-overlay,
  .row--calculator .row__body .grid,
  .row--calculator .row__body .flex-grid,
  .row--calculator .row__body .grid__item,
  .row--calculator .row__body .flex-grid__item {
    height: 100%; }
  .row--calculator .row__inner {
    position: relative;
    padding: 120px 0; }
  .row--calculator .row__header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 40px; }
  .row--calculator .row__body {
    padding: 0 40px; }
    .row--calculator .row__body:after {
      content: "";
      display: table;
      clear: both; }
  .row--calculator .row__media-wrap,
  .row--calculator .row__content-wrap {
    width: 50%; }
  .row--calculator .row__media {
    position: relative;
    padding-right: 40px; }
  .row--calculator .row__content {
    height: 100%;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 80px; }
  .row--calculator .row__body > .flex-grid--reverse .row__media {
    padding-right: 0;
    padding-left: 40px; }
  .row--calculator .row__body > .flex-grid--reverse .row__content {
    padding-right: 40px;
    padding-left: 140px; }
  .row--calculator .tabbed-content__nav {
    margin: 0 0 60px;
    font-size: 0;
    line-height: 0; }
    .row--calculator .tabbed-content__nav li {
      display: inline-block; }
    .row--calculator .tabbed-content__nav a {
      font-size: 15px;
      line-height: 26px;
      display: block;
      color: #1E396B;
      border: 2px solid #1E396B;
      padding: 10px 25px;
      font-weight: 700; }
      .row--calculator .tabbed-content__nav a:after {
        display: none !important; }
      .row--calculator .tabbed-content__nav a:hover {
        background-color: #f3f5f9; }
    .row--calculator .tabbed-content__nav li:not(:first-child) a {
      border-left: none; }
    .row--calculator .tabbed-content__nav li:first-child a {
      border-top-left-radius: 25px;
      border-bottom-left-radius: 25px;
      padding-left: 40px; }
    .row--calculator .tabbed-content__nav li:last-child a {
      border-top-right-radius: 25px;
      border-bottom-right-radius: 25px;
      padding-right: 40px; }
    .row--calculator .tabbed-content__nav li.r-tabs-state-active a {
      color: #fff;
      background-color: #1E396B; }
  .row--calculator .r-tabs-accordion-title {
    margin-bottom: 10px; }
    .row--calculator .r-tabs-accordion-title a {
      display: block !important;
      border: 2px solid #1E396B;
      border-radius: 25px;
      padding: 10px 50px 10px 30px;
      color: #1E396B;
      font-weight: 700;
      position: relative; }
      .row--calculator .r-tabs-accordion-title a:after {
        display: none !important; }
      .row--calculator .r-tabs-accordion-title a:before {
        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'rsc-icons' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e900";
        font-size: 8px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform; }
      .row--calculator .r-tabs-accordion-title a:hover {
        background-color: #f3f5f9; }
  .row--calculator .r-tabs-accordion-title.r-tabs-state-active a {
    background-color: #1E396B;
    color: #fff; }
    .row--calculator .r-tabs-accordion-title.r-tabs-state-active a:before {
      color: #fff;
      transform: translateY(-50%) rotate(180deg); }
  .row--calculator .gfield.has-tooltip {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row; }
    .row--calculator .gfield.has-tooltip .gfield_label {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }
    .row--calculator .gfield.has-tooltip .gfield_description {
      width: 140px;
      position: relative;
      padding-left: 10px; }
    .row--calculator .gfield.has-tooltip .ginput_container {
      -ms-flex: 1;
      flex: 1; }
  .row--calculator .gfield_tooltip_content {
    display: block;
    width: 340px;
    height: auto;
    position: absolute;
    top: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translate(-50%, 40px);
    background-color: #fff;
    padding: 20px;
    border: 2px solid #8F99AB;
    border-radius: 5px;
    z-index: 80;
    left: 50%;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: #1E396B;
    font-style: normal;
    box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.05);
    font-size: 12px;
    line-height: 1.3; }
    .row--calculator .gfield_tooltip_content.active {
      opacity: 1;
      transform: translate(-50%, 10px); }
  .row--calculator .btn.gfield_tooltip_btn {
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 2px solid #e5ebef;
    border-radius: 4px;
    width: 100%;
    height: 50px; }
    .row--calculator .btn.gfield_tooltip_btn .ico + span:not(.visuallyhidden) {
      margin-left: 6px; }
    .row--calculator .btn.gfield_tooltip_btn .ico {
      top: 2px;
      font-size: 17px;
      transition: color 0.3s; }
    .row--calculator .btn.gfield_tooltip_btn .btn__label {
      font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: 400;
      font-style: italic;
      font-size: 12px; }
    .row--calculator .btn.gfield_tooltip_btn:focus, .row--calculator .btn.gfield_tooltip_btn:hover, .row--calculator .btn.gfield_tooltip_btn:active {
      background-color: #e5ebef; }
      .row--calculator .btn.gfield_tooltip_btn:focus,
      .row--calculator .btn.gfield_tooltip_btn:focus .ico, .row--calculator .btn.gfield_tooltip_btn:hover,
      .row--calculator .btn.gfield_tooltip_btn:hover .ico, .row--calculator .btn.gfield_tooltip_btn:active,
      .row--calculator .btn.gfield_tooltip_btn:active .ico {
        color: #1E396B; }
  .row--calculator .gform_fields li,
  .row--calculator .gform_fields > .gfield {
    margin-bottom: 20px; }
  .row--calculator .calculator__results {
    background-color: #f5f7f8;
    padding: 20px 30px;
    color: #1E396B;
    min-height: 105px;
    position: relative; }
    .row--calculator .calculator__results .calculator__results__savings-value {
      display: block;
      font-weight: bold;
      font-size: 40px;
      line-height: 1; }
  .row--calculator .calculator__results-table table.table {
    border: none; }
    .row--calculator .calculator__results-table table.table thead tr td,
    .row--calculator .calculator__results-table table.table thead tr th,
    .row--calculator .calculator__results-table table.table tbody tr:not(:last-child) td {
      border: none; }
    .row--calculator .calculator__results-table table.table tr:not(:last-child) {
      border-bottom: 1px solid #8F99AB; }
    .row--calculator .calculator__results-table table.table .calculator__results__costs-value,
    .row--calculator .calculator__results-table table.table .calculator__results__savings-value {
      text-align: right; }
  .row--calculator .gfield_label {
    color: #1E396B; }
  .row--calculator .gform_footer {
    display: none !important; }
  .row--calculator:not(.calculated) .calculator__results {
    pointer-events: none; }
    .row--calculator:not(.calculated) .calculator__results .calculator__results__label,
    .row--calculator:not(.calculated) .calculator__results .calculator__results__savings-value {
      opacity: 0; }
  .row--calculator:not(.calculated) .calculator__results-table {
    pointer-events: none;
    opacity: 0; }
  .row--calculator.calculating .calculator__results:after {
    content: "";
    background-image: url(../../revtrac/images/spinner.svg);
    background-size: contain;
    width: 42px;
    height: 42px;
    right: auto;
    left: 50%;
    margin-left: -21px;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

@media only screen and (min-width: 799px) and (max-width: 1180px) {
  .row--calculator .row__inner {
    padding-left: 40px;
    padding-right: 40px; } }

@media (max-width: 1460px) {
  .row--calculator .row__content {
    padding-right: 40px; }
  .row--calculator .row__body > .flex-grid--reverse .row__content {
    padding-left: 40px; } }

@media only screen and (max-width: 798px) {
  .row--calculator {
    height: auto; }
    .row--calculator .row__inner {
      padding-left: 20px;
      padding-right: 20px; }
    .row--calculator .row__media-wrap,
    .row--calculator .row__content-wrap {
      width: 100%; }
    .row--calculator .row__body {
      display: block;
      padding: 0; }
      .row--calculator .row__body > .flex-grid {
        margin-left: 0; }
        .row--calculator .row__body > .flex-grid .flex-grid__item {
          padding-left: 0; }
    .row--calculator .row__media {
      width: 100%;
      position: relative;
      padding: 0; }
    .row--calculator .row__content {
      width: 100%;
      height: auto;
      display: block;
      padding: 40px 20px; }
    .row--calculator .tabbed-content__tabs__tab {
      padding: 20px 20px 40px; }
    .row--calculator .row__body > .flex-grid--reverse .row__content {
      padding-left: 20px;
      padding-right: 20px; }
    .row--calculator .row__body > .flex-grid--reverse .row__media {
      padding: 0; } }

@media only screen and (max-width: 588px) {
  .row--calculator .row__content {
    padding-top: 40px;
    padding-bottom: 40px; }
    .row--calculator .row__content .btn {
      display: block; } }

.row.row--hero#hero_404 .row__content .row__content__inner {
  text-align: center;
  margin-left: auto;
  margin-right: auto; }

.archive.author .row.row--hero .row__body {
  padding-left: 130px;
  position: relative; }

.archive.author .row.row--hero .row__media {
  position: absolute;
  left: 0;
  top: 180px;
  border: 2px solid #fff;
  box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.1);
  width: 104px;
  height: 104px;
  border-radius: 50%; }
  .archive.author .row.row--hero .row__media figure {
    width: 100px;
    height: 100px;
    border-radius: 50%; }

@media only screen and (min-width: 799px) and (max-width: 1180px) {
  .archive.author .row.row--hero .row__body {
    padding-left: 170px; }
  .archive.author .row.row--hero .row__media {
    left: 40px; } }

@media only screen and (max-width: 798px) {
  .archive.author .row.row--hero .row__body {
    padding-left: 20px; }
  .archive.author .row.row--hero .row__media {
    top: 120px;
    position: relative; }
  .archive.author .row.row--hero .row__content h1 {
    font-size: 40px; } }

@media only screen and (max-width: 588px) {
  .archive.author .row.row--hero .row__media {
    top: 100px;
    left: 50%;
    transform: translateX(-50%); }
  .archive.author .row.row--hero .row__content {
    text-align: center; } }

.feed.feed--resources .feed__header:after, .feed.feed--events .feed__header:after {
  content: "";
  display: table;
  clear: both; }

.feed.feed--resources .feed__header > h3, .feed.feed--events .feed__header > h3 {
  width: calc(100% - 250px);
  display: inline-block;
  vertical-align: top; }

#resource_filters_toggle {
  display: inline-block;
  float: right;
  vertical-align: top; }

#row_resource_filters {
  clear: both; }

.row.row--resource-filters {
  display: none; }
  .row.row--resource-filters #resource_filters_close {
    position: absolute;
    right: 40px;
    top: 30px; }
  .row.row--resource-filters .row__inner {
    padding-top: 40px;
    padding-bottom: 0; }
  .row.row--resource-filters .row__body {
    opacity: 0;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity;
    position: relative;
    border: 1px solid #EEEFF1;
    border-radius: 4px;
    background-color: #fff;
    padding: 50px;
    box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.05); }

.block.block--filters:not(:last-child) {
  margin-bottom: 20px; }

.block.block--filters .block__header {
  margin-bottom: 10px; }
  .block.block--filters .block__header,
  .block.block--filters .block__header > * {
    color: #8F99AB; }

.block.block--filters .block__content label.loz {
  display: inline-block;
  margin-right: 4px;
  font-size: 14px;
  background-color: #EEEFF1;
  color: #1E396B;
  padding: 8px 20px;
  border-radius: 20px;
  min-width: 100px;
  margin-bottom: 10px; }
  .block.block--filters .block__content label.loz:hover {
    background-color: #e0e2e5; }

.block.block--filters input[type="radio"],
.block.block--filters input[type="checkbox"] {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }
  .block.block--filters input[type="radio"]:checked + label.loz,
  .block.block--filters input[type="checkbox"]:checked + label.loz {
    background-color: #1E396B;
    color: #fff; }
    .block.block--filters input[type="radio"]:checked + label.loz:hover,
    .block.block--filters input[type="checkbox"]:checked + label.loz:hover {
      background-color: #182e57; }

.block.feed__block.block--form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  align-items: center; }
  .block.feed__block.block--form > * {
    width: 100%; }
  .block.feed__block.block--form .gform_title {
    color: #f47c00;
    font-size: 25px;
    line-height: 1.2;
    width: 430px;
    max-width: 100%; }
    .block.feed__block.block--form .gform_title:first-line {
      color: #1E396B; }
  .block.feed__block.block--form .gform_footer {
    padding-top: 0; }

.block.feed__block .block__header h1,
.block.feed__block .block__header h1 a {
  font-size: 25px;
  line-height: 1.2; }

.block.feed__block .block__header h1 a {
  white-space: normal;
  text-align: left;
  color: #1E396B; }
  .block.feed__block .block__header h1 a:hover, .block.feed__block .block__header h1 a:focus {
    color: #f47c00; }

.feed.feed--bordered .flex-grid__item.one-half .block, .feed.feed--bordered .flex-grid__item.two-quarters .block, .feed.feed--bordered .flex-grid__item.three-sixths .block, .feed.feed--bordered .flex-grid__item.four-eighths .block, .feed.feed--bordered .flex-grid__item.five-tenths .block, .feed.feed--bordered .flex-grid__item.six-twelfths .block {
  padding-top: 70px;
  padding-bottom: 70px;
  border-top: 1px solid #E5EBEF; }

.feed.feed--bordered .flex-grid__item.one-half:nth-child(1) .block, .feed.feed--bordered .flex-grid__item.two-quarters:nth-child(1) .block, .feed.feed--bordered .flex-grid__item.three-sixths:nth-child(1) .block, .feed.feed--bordered .flex-grid__item.four-eighths:nth-child(1) .block, .feed.feed--bordered .flex-grid__item.five-tenths:nth-child(1) .block, .feed.feed--bordered .flex-grid__item.six-twelfths:nth-child(1) .block,
.feed.feed--bordered .flex-grid__item.one-half:nth-child(2) .block,
.feed.feed--bordered .flex-grid__item.two-quarters:nth-child(2) .block,
.feed.feed--bordered .flex-grid__item.three-sixths:nth-child(2) .block,
.feed.feed--bordered .flex-grid__item.four-eighths:nth-child(2) .block,
.feed.feed--bordered .flex-grid__item.five-tenths:nth-child(2) .block,
.feed.feed--bordered .flex-grid__item.six-twelfths:nth-child(2) .block {
  border-top: none; }

.feed.feed--bordered .flex-grid__item.one-half:nth-child(odd) .block, .feed.feed--bordered .flex-grid__item.two-quarters:nth-child(odd) .block, .feed.feed--bordered .flex-grid__item.three-sixths:nth-child(odd) .block, .feed.feed--bordered .flex-grid__item.four-eighths:nth-child(odd) .block, .feed.feed--bordered .flex-grid__item.five-tenths:nth-child(odd) .block, .feed.feed--bordered .flex-grid__item.six-twelfths:nth-child(odd) .block {
  border-right: 1px solid #E5EBEF;
  padding-right: 60px;
  text-align: right; }

.feed.feed--bordered .flex-grid__item.one-half:nth-child(even) .block, .feed.feed--bordered .flex-grid__item.two-quarters:nth-child(even) .block, .feed.feed--bordered .flex-grid__item.three-sixths:nth-child(even) .block, .feed.feed--bordered .flex-grid__item.four-eighths:nth-child(even) .block, .feed.feed--bordered .flex-grid__item.five-tenths:nth-child(even) .block, .feed.feed--bordered .flex-grid__item.six-twelfths:nth-child(even) .block {
  padding-left: 60px; }

.feed__header {
  padding: 60px 0 40px;
  max-width: 100%; }
  .feed__header.text--center {
    margin-left: auto;
    margin-right: auto; }

.feed__footer {
  padding: 40px 0 60px;
  text-align: center; }
  .feed__footer ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0; }
    .feed__footer ul:after {
      content: "";
      display: table;
      clear: both; }
  .feed__footer li {
    display: inline-block;
    float: left; }
    .feed__footer li > a,
    .feed__footer li > span {
      display: block;
      color: #1E396B;
      border: 2px solid #1E396B;
      padding: 10px 25px;
      font-weight: 700; }
      .feed__footer li > a:after,
      .feed__footer li > span:after {
        display: none !important; }
      .feed__footer li > a.current,
      .feed__footer li > span.current {
        background-color: #1E396B;
        color: #fff; }
      .feed__footer li > a.prev .ico, .feed__footer li > a.next .ico,
      .feed__footer li > span.prev .ico,
      .feed__footer li > span.next .ico {
        position: relative;
        top: 1px; }
    .feed__footer li > span.prev,
    .feed__footer li > span.next {
      color: #a8bbd3;
      border-color: #a8bbd3;
      pointer-events: none; }
    .feed__footer li > span.dots {
      pointer-events: none; }
    .feed__footer li > a:hover {
      background-color: #f3f5f9; }
  .feed__footer li:not(:last-child) > a,
  .feed__footer li:not(:last-child) > span {
    border-right: none; }
  .feed__footer li:first-child > a,
  .feed__footer li:first-child > span {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    padding-left: 30px; }
  .feed__footer li:last-child > a,
  .feed__footer li:last-child > span {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    padding-right: 30px; }

.feed__error {
  color: #F04E57;
  padding: 20px 0;
  text-align: center; }

.block.feed__block {
  padding: 40px 40px 50px 40px;
  border: 1px solid #E5EBEF;
  border-radius: 4px;
  position: relative;
  margin-left: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 0 rgba(35, 31, 32, 0);
  transition: box-shadow 0.3s; }
  .block.feed__block:after {
    content: "";
    display: table;
    clear: both; }
  .block.feed__block:hover {
    box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.05); }
  .block.feed__block .block__header h1 {
    margin-bottom: 0; }
  .block.feed__block .block__media figure {
    cursor: pointer; }
  .block.feed__block .block__footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-top: 0; }
  .block.feed__block a.block__type {
    background-color: #e5ebef;
    color: #82919b;
    font-size: 13px;
    line-height: 1;
    padding: 8px 30px; }
    .block.feed__block a.block__type:hover, .block.feed__block a.block__type:focus, .block.feed__block a.block__type:active {
      background-color: #82919b;
      color: #fff; }
  .block.feed__block.block-layout--default .block__media {
    width: 160px;
    float: right; }
    .block.feed__block.block-layout--default .block__media + .block__header,
    .block.feed__block.block-layout--default .block__media + .block__header + .block__content {
      width: calc(100% - 180px);
      float: left;
      padding: 0; }
  .block.feed__block.block-layout--event {
    padding: 30px 30px 50px 30px; }
    .block.feed__block.block-layout--event:after {
      content: "";
      display: table;
      clear: both; }
    .block.feed__block.block-layout--event .block__meta {
      width: 130px;
      float: left; }
    .block.feed__block.block-layout--event .block__header,
    .block.feed__block.block-layout--event .block__content {
      width: calc(100% - 130px);
      float: right;
      padding: 0; }
    .block.feed__block.block-layout--event .block__header {
      margin-bottom: 5px; }
  .block.feed__block.block-layout--feature .block__media, .block.feed__block.block-layout--video .block__media, .block.feed__block.block-layout--popout .block__media {
    position: relative;
    top: auto;
    right: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    line-height: 0;
    margin-bottom: 20px;
    float: none; }
    .block.feed__block.block-layout--feature .block__media figure, .block.feed__block.block-layout--video .block__media figure, .block.feed__block.block-layout--popout .block__media figure {
      width: 100%;
      height: 280px;
      border-radius: 0; }
  .block.feed__block.block-layout--feature .block__media,
  .block.feed__block.block-layout--feature .block__header,
  .block.feed__block.block-layout--feature .block__content, .block.feed__block.block-layout--video .block__media,
  .block.feed__block.block-layout--video .block__header,
  .block.feed__block.block-layout--video .block__content, .block.feed__block.block-layout--popout .block__media,
  .block.feed__block.block-layout--popout .block__header,
  .block.feed__block.block-layout--popout .block__content {
    width: 100%; }
  .block.feed__block.block-layout--popout .block__media {
    margin-top: -40px;
    margin-left: -40px;
    margin-right: -40px;
    width: auto;
    display: block; }
    .block.feed__block.block-layout--popout .block__media,
    .block.feed__block.block-layout--popout .block__media figure {
      border-radius: 3px 3px 0 0; }
  .block.feed__block.block-layout--video .block__media figure {
    position: relative; }
    .block.feed__block.block-layout--video .block__media figure:before, .block.feed__block.block-layout--video .block__media figure:after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
    .block.feed__block.block-layout--video .block__media figure:before {
      width: 70px;
      height: 50px;
      border-radius: 6px;
      background-color: rgba(244, 124, 0, 0.8);
      z-index: 1; }
    .block.feed__block.block-layout--video .block__media figure:after {
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 12px solid #fff;
      z-index: 2; }

.row--related-posts .block.feed__block {
  padding: 20px 20px 60px 20px; }
  .row--related-posts .block.feed__block.block-layout--feature .block__media figure, .row--related-posts .block.feed__block.block-layout--video .block__media figure, .row--related-posts .block.feed__block.block-layout--popout .block__media figure {
    height: 200px; }
  .row--related-posts .block.feed__block.block-layout--popout .block__media {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%; }
  .row--related-posts .block.feed__block.block-layout--event .block__meta {
    float: none;
    width: 100px;
    margin: 0 auto 20px; }
  .row--related-posts .block.feed__block.block-layout--event .block__header,
  .row--related-posts .block.feed__block.block-layout--event .block__content {
    float: none;
    width: 100%; }
    .row--related-posts .block.feed__block.block-layout--event .block__header,
    .row--related-posts .block.feed__block.block-layout--event .block__header a,
    .row--related-posts .block.feed__block.block-layout--event .block__content,
    .row--related-posts .block.feed__block.block-layout--event .block__content a {
      display: block;
      text-align: center; }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  .block.feed__block.block-layout--feature .block__media figure, .block.feed__block.block-layout--video .block__media figure {
    height: 220px; }
    .block.feed__block.block-layout--feature .block__media figure img, .block.feed__block.block-layout--video .block__media figure img {
      border: 0 !important;
      clip: rect(0 0 0 0) !important;
      height: 1px !important;
      margin: -1px !important;
      overflow: hidden !important;
      padding: 0 !important;
      position: absolute !important;
      width: 1px !important; } }

@media only screen and (max-width: 588px) {
  .block.feed__block {
    padding: 20px 20px 50px 20px;
    margin-left: 0; }
    .block.feed__block.block-layout--event .block__meta {
      width: 100px;
      float: none;
      margin: 0 auto 20px; }
    .block.feed__block.block-layout--event .block__header,
    .block.feed__block.block-layout--event .block__content {
      float: none;
      width: 100%; }
      .block.feed__block.block-layout--event .block__header,
      .block.feed__block.block-layout--event .block__header a,
      .block.feed__block.block-layout--event .block__content,
      .block.feed__block.block-layout--event .block__content a {
        display: block;
        text-align: center; }
    .block.feed__block.block-layout--feature .block__media figure, .block.feed__block.block-layout--video .block__media figure {
      height: 180px; }
      .block.feed__block.block-layout--feature .block__media figure img, .block.feed__block.block-layout--video .block__media figure img {
        border: 0 !important;
        clip: rect(0 0 0 0) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important; }
    .block.feed__block.block-layout--popout .block__media {
      margin-top: -20px;
      margin-left: -20px;
      margin-right: -20px; }
    .block.feed__block.block-layout--popout .block__header,
    .block.feed__block.block-layout--popout .block__header a,
    .block.feed__block.block-layout--popout .block__content,
    .block.feed__block.block-layout--popout .block__content a {
      display: block;
      text-align: center; }
    .block.feed__block.block-layout--default .block__media {
      width: 100%;
      float: none;
      margin-bottom: 20px; }
      .block.feed__block.block-layout--default .block__media + .block__header,
      .block.feed__block.block-layout--default .block__media + .block__header + .block__content {
        width: 100%;
        float: none; }
      .block.feed__block.block-layout--default .block__media figure {
        height: 180px; }
        .block.feed__block.block-layout--default .block__media figure img {
          border: 0 !important;
          clip: rect(0 0 0 0) !important;
          height: 1px !important;
          margin: -1px !important;
          overflow: hidden !important;
          padding: 0 !important;
          position: absolute !important;
          width: 1px !important; } }

.feed.feed--article:not(.feed--empty) .feed__body,
.feed.feed--search:not(.feed--empty) .feed__body,
.feed.feed--resources:not(.feed--empty) .feed__body {
  margin-left: -20px; }

.feed.feed--article .feed__header,
.feed.feed--search .feed__header,
.feed.feed--resources .feed__header {
  padding-top: 120px; }

body.blog .content__body:not(.content__body--with-resource-finder) .feed.feed--resources .feed__header {
  padding-top: 60px; }

body.single-profile .feed.feed--resources .feed__header {
  padding-top: 40px; }

@media only screen and (max-width: 588px) {
  .feed.feed--article .feed__header,
  .feed.feed--search .feed__header,
  .feed.feed--resources .feed__header {
    padding-top: 80px; }
  .feed.feed--article:not(.feed--empty) .feed__body,
  .feed.feed--search:not(.feed--empty) .feed__body,
  .feed.feed--resources:not(.feed--empty) .feed__body {
    margin-left: 0; }
  body.blog .content__body:not(.content__body--with-resource-finder) .feed.feed--resources .feed__header {
    padding-top: 60px; } }

body.single #row_hero_article .row__content > * {
  width: 600px;
  max-width: 100%; }

body.single #row_content + .row.row--form:not(.row--form--columns) .block--form.block--form--boxed {
  background-color: transparent;
  border: none;
  padding: 0; }
  body.single #row_content + .row.row--form:not(.row--form--columns) .block--form.block--form--boxed .block__content {
    background-color: #FAFAFB;
    border: 1px solid #E5EBEF;
    padding: 50px; }

body.single .block.block--event-snapshot {
  z-index: 5;
  position: relative; }

body.single .content__media {
  position: relative;
  z-index: 1;
  margin-top: -90px;
  margin-bottom: 40px;
  padding: 0 120px; }
  body.single .content__media figure {
    box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.05);
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 80%;
    max-width: 100%;
    margin: 0 auto; }
    body.single .content__media figure img {
      border: 0 !important;
      clip: rect(0 0 0 0) !important;
      height: 1px !important;
      margin: -1px !important;
      overflow: hidden !important;
      padding: 0 !important;
      position: absolute !important;
      width: 1px !important; }

body.single .content__extras {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 80px; }
  @media only screen and (min-width: 799px) and (max-width: 1180px) {
    body.single .content__extras {
      left: 40px; } }
  @media only screen and (min-width: 589px) and (max-width: 798px) {
    body.single .content__extras {
      left: 20px; } }
  @media only screen and (max-width: 588px) {
    body.single .content__extras {
      width: 100%;
      margin-top: 0; } }
  body.single .content__extras .nav > li {
    margin-bottom: 10px;
    text-align: center; }
    body.single .content__extras .nav > li > a {
      display: inline-block; }
    body.single .content__extras .nav > li.nav__back, body.single .content__extras .nav > li.nav__profile {
      margin-bottom: 20px; }
    body.single .content__extras .nav > li.nav__profile a.btn.btn--ico {
      width: 80px;
      height: 80px;
      background-size: cover;
      background-position: 50%;
      background-repeat: no-repeat;
      border: 2px solid #e6ebe9; }
    body.single .content__extras .nav > li.nav__back a {
      position: relative; }
      body.single .content__extras .nav > li.nav__back a:before {
        content: "";
        background-color: #E6EBE9;
        border-radius: 20px;
        height: 40px;
        display: block;
        position: absolute;
        z-index: 1;
        width: 40px;
        transition: all 0.3s;
        transition-delay: 0.3s; }
      body.single .content__extras .nav > li.nav__back a .ico {
        position: relative; }
      body.single .content__extras .nav > li.nav__back a .ico,
      body.single .content__extras .nav > li.nav__back a .btn__label {
        z-index: 2; }
      body.single .content__extras .nav > li.nav__back a .btn__label {
        margin-left: 0;
        padding: 0 20px 0 20px;
        color: #fff;
        position: absolute;
        font-size: 14px;
        opacity: 0;
        transition: opacity 0.3s;
        transition-delay: 0s;
        pointer-events: none; }
      body.single .content__extras .nav > li.nav__back a:hover:before, body.single .content__extras .nav > li.nav__back a:focus:before, body.single .content__extras .nav > li.nav__back a:active:before {
        opacity: 1;
        width: 200px;
        background-color: #9ba3b2;
        transition-delay: 0s; }
      body.single .content__extras .nav > li.nav__back a:hover .btn__label, body.single .content__extras .nav > li.nav__back a:focus .btn__label, body.single .content__extras .nav > li.nav__back a:active .btn__label {
        transition-delay: 0.3s;
        opacity: 1; }
  body.single .content__extras.is-sticky {
    position: fixed;
    top: 130px;
    left: auto;
    margin-left: -120px; }
    @media only screen and (min-width: 799px) and (max-width: 1180px) {
      body.single .content__extras.is-sticky {
        margin-left: -100px; } }
    @media only screen and (min-width: 589px) and (max-width: 798px) {
      body.single .content__extras.is-sticky {
        margin-left: -100px; } }
    @media only screen and (max-width: 588px) {
      body.single .content__extras.is-sticky {
        top: 110px; } }
    @media (min-width: 799px) and (max-width: 880px) {
      body.single .content__extras.is-sticky {
        top: 200px; } }

body.single .content__header {
  margin-bottom: 60px; }

body.single .content__body {
  position: relative;
  margin-bottom: 40px; }
  body.single .content__body blockquote {
    margin-left: -30px;
    margin-right: -30px; }

body.single .content__meta,
body.single .content__body,
body.single .content__footer {
  padding: 0 120px; }

body.single .content__meta {
  margin-bottom: 40px; }
  body.single .content__meta .nav {
    width: 80%;
    max-width: 100%;
    margin: 0 auto; }
  body.single .content__meta li {
    margin-bottom: 5px; }
  body.single .content__meta li:not(:last-child) {
    margin-right: 5px; }

body.single .row.row--content .row__inner {
  padding: 0; }

@media (min-width: 1360px) {
  body.single .content__body blockquote {
    margin-left: -60px;
    margin-right: -60px; } }

@media only screen and (min-width: 799px) and (max-width: 1180px) {
  body.single .content__meta,
  body.single .content__body,
  body.single .content__footer {
    padding: 0 140px; }
  body.single .content__body blockquote {
    margin-left: -20px;
    margin-right: -20px; } }

@media only screen and (min-width: 589px) and (max-width: 798px) {
  body.single .content__media figure {
    width: 100%;
    height: 360px; }
  body.single .content__meta .nav {
    width: 100%; } }

@media only screen and (max-width: 588px) {
  body.single .content__header {
    margin-bottom: 20px; }
  body.single .content__meta,
  body.single .content__body,
  body.single .content__footer {
    padding: 0 20px; }
  body.single .content__media {
    padding: 0 20px;
    margin-top: 40px; }
    body.single .content__media figure {
      width: 100%;
      height: 240px; }
  body.single .content__meta {
    margin-bottom: 20px; }
    body.single .content__meta .nav {
      width: 100%; }
  body.single .content__body blockquote {
    margin-left: -10px;
    margin-right: -10px;
    padding: 20px; }
    body.single .content__body blockquote,
    body.single .content__body blockquote p {
      text-align: center !important; }
  body.single .content__extras {
    position: relative;
    top: auto;
    left: auto;
    padding-top: 20px;
    border-top: 1px solid #EEEFF1;
    margin-top: 40px;
    margin-bottom: 20px; }
    body.single .content__extras .nav {
      text-align: center; }
      body.single .content__extras .nav > li {
        display: inline-block;
        width: auto; }
        body.single .content__extras .nav > li.nav__back, body.single .content__extras .nav > li.nav__profile {
          border: 0 !important;
          clip: rect(0 0 0 0) !important;
          height: 1px !important;
          margin: -1px !important;
          overflow: hidden !important;
          padding: 0 !important;
          position: absolute !important;
          width: 1px !important; } }

body.single .row.row--hero .row__body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: row;
  flex-direction: row; }

body.single .row.row--hero .row__media {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 10px 10px 20px 0 rgba(35, 31, 32, 0.1); }
  body.single .row.row--hero .row__media figure {
    width: 100%;
    height: 100%;
    border-radius: 50%; }

body.single .row.row--hero .row__media {
  margin: auto 30px auto 0;
  position: relative;
  top: 20px; }

body.single .row.row--hero .row__content {
  -ms-flex: 1;
  flex: 1; }
  body.single .row.row--hero .row__content a {
    color: #1E396B; }
    body.single .row.row--hero .row__content a:hover, body.single .row.row--hero .row__content a:focus {
      color: #f47c00; }

@media only screen and (max-width: 588px) {
  body.single .row.row--hero .row__body,
  body.single .row.row--hero .row__content {
    display: block; }
  body.single .row.row--hero .row__body {
    padding-top: 100px; }
  body.single .row.row--hero .row__media {
    top: 0; }
  body.single .row.row--hero .row__content {
    padding-top: 20px; } }

body.single .row.row--related-posts .row__inner {
  padding: 40px 60px; }

body.single .row.row--related-posts .row__header {
  margin-bottom: 20px; }

@media only screen and (max-width: 588px) {
  body.single .row.row--related-posts .row__inner {
    padding: 40px 20px; } }

body.single .row.row--next-previous .next-previous__label__surtitle {
  margin-bottom: 10px; }

body.single .row.row--next-previous .next-previous__label__title {
  font-size: 17px;
  line-height: 1.2; }

.modal-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 998;
  background-color: rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: background-color 0.3s; }

.modal-panel__inner {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 600px;
  max-width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: -15px 2px 40px 0 rgba(35, 31, 32, 0.05);
  transform: translateX(120%);
  transition: transform 0.3s;
  overflow-y: auto;
  padding: 100px 100px 70px 50px;
  /*
	@include media-query(portable) {
		padding: 60px 30px 60px;
	}
	@include media-query(palm) {
		padding: 50px 20px 50px;
	}
	*/ }

.modal-panel__close-btn {
  background: transparent;
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 1000;
  border: 0;
  color: #8F99AB;
  pointer-events: none;
  opacity: 0;
  /*
	@include media-query(portable) {
		top: 25px;
		right: 25px;
	}
	*/ }

.modal-panel__header {
  margin-bottom: 20px; }

.modal-panel__body .wp_autosearch_form_wrapper {
  border-radius: 30px;
  background-color: #fff !important;
  position: relative; }
  .modal-panel__body .wp_autosearch_form_wrapper:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'rsc-icons' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e904";
    color: #8F99AB;
    font-size: 16px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%); }

.modal-panel__body .wp_autosearch_input {
  background-color: transparent !important;
  padding-left: 50px !important;
  width: 100% !important; }

.modal-panel__body .wp_autosearch_submit, .modal-panel__body .wp_autosearch_submit:hover, .modal-panel__body .wp_autosearch_submit:active, .modal-panel__body .wp_autosearch_submit:visited {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.modal-panel__body .wp_autosearch_indicator {
  background: url(../../revtrac/images/spinner.svg) no-repeat 95% 50% !important;
  background-size: 20px !important; }

.modal-panel__body .wp_autosearch_suggestions {
  width: 100%; }

.modal-panel__body ::-webkit-input-placeholder {
  font-style: italic;
  color: #C0C6CA; }

.modal-panel__body ::-moz-placeholder {
  font-style: italic;
  color: #C0C6CA; }

.modal-panel__body :-ms-input-placeholder {
  font-style: italic;
  color: #C0C6CA; }

.modal-panel__body input:-moz-placeholder {
  font-style: italic;
  color: #C0C6CA; }

.wp_autosearch_suggestions {
  margin-top: 20px !important;
  border: none !important;
  box-shadow: none !important; }
  .wp_autosearch_suggestions span.wp_autosearch_category,
  .wp_autosearch_suggestions a.wp_autosearch_category {
    background-color: transparent !important;
    color: #1E396B !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px; }
  .wp_autosearch_suggestions a.wp_autosearch_category:hover, .wp_autosearch_suggestions a.wp_autosearch_category:active {
    border-color: #8F99AB !important; }
  .wp_autosearch_suggestions li {
    cursor: default; }
    .wp_autosearch_suggestions li a {
      cursor: pointer; }
  .wp_autosearch_suggestions a.wp_autosearch_result {
    border: 1px solid #E5EBEF;
    border-radius: 3px;
    margin-bottom: 20px;
    padding: 20px;
    font-size: 15px; }
    .wp_autosearch_suggestions a.wp_autosearch_result .searchheading,
    .wp_autosearch_suggestions a.wp_autosearch_result .wp_autosearch_item_description {
      display: block !important; }
    .wp_autosearch_suggestions a.wp_autosearch_result .searchheading {
      color: #1E396B !important; }
    .wp_autosearch_suggestions a.wp_autosearch_result .wp_autosearch_item_description {
      padding-top: 10px; }
  .wp_autosearch_suggestions .autosearch_more {
    background-image: none;
    font-size: 15px; }
    .wp_autosearch_suggestions .autosearch_more, .wp_autosearch_suggestions .autosearch_more:focus, .wp_autosearch_suggestions .autosearch_more:visited, .wp_autosearch_suggestions .autosearch_more:active {
      color: #fff !important; }

body > .wp_autosearch_suggestions {
  display: none !important;
  visibility: hidden !important; }

html.modal-open {
  overflow-y: hidden; }
  html.modal-open .modal-panel.active {
    pointer-events: all;
    background-color: rgba(255, 255, 255, 0.9); }
    html.modal-open .modal-panel.active .modal-panel__inner {
      overflow-y: scroll; }
    html.modal-open .modal-panel.active .modal-panel__close-btn {
      pointer-events: all;
      opacity: 1; }
  html.modal-open .modal-panel.active .modal-panel__inner {
    transform: translateX(0); }

.modal-panel .modal-panel__loading {
  text-align: center;
  padding: 40px 0 0; }

@media only screen and (max-width: 588px) {
  .modal-panel__close-btn {
    top: 10px;
    right: 10px; }
  .modal-panel__inner {
    padding: 50px 30px 30px 30px; }
  .modal-panel__body .wp_autosearch_form_wrapper:before {
    left: 15px; }
  .modal-panel__body .wp_autosearch_input {
    padding-left: 40px !important; } }

.sprite--logo-full {
  background-image: url("../images/codesafe-logo-full.svg?v=1");
  width: 175px;
  height: 37px; }

#image-overlay-primary_x5F__x5F_front,
#image-overlay-primary-small_x5F__x5F_front,
#image-overlay-secondary_x5F__x5F_back,
#image-overlay-secondary-small_x5F__x5F_front {
  fill: #f47c00 !important; }

.header .logo,
.header .logo .sprite,
.header .logo .ginput_card_security_code_icon,
.header .logo
.gform_card_icon {
  width: 175px;
  height: 37px; }

.footer .sprite--logo-full {
  width: 175px;
  height: 37px; }
