@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
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * dr.css’ default variables.
 * Redefine these in your own `_vars.scss` file
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/**
 * Default border-radius
 */
/**
 * 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 dr.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels)
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * dr.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.
 */
/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/* $input-border-color: #999;
$input-bg-color: #fff;
$input-text-color: $base-ui-color;
$input-radius: $base-border-radius; */
/* $base-input-height: 52px;
$label-font-size: 16px;
$input-highlight-border-color: #fff;
$input-highlight-glow-color: rgba(#fff, 0); */
/*------------------------------------*\
    VARS.SCSS
\*------------------------------------*/
/**
 * Any variables you find set in dr.css’ `_vars.scss` that you do not wish to
 * keep, simply redefine here. This means that if dr.css, for example, sets
 * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare
 * that variable in this file. dr.css ignores its own variables in favour of
 * using your own, so you can completely modify how dr.css works without ever
 * having to alter the framework itself.
 */
/*------------------------------------*\
    $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.
 */
/*------------------------------------*\
    DR.CSS
\*------------------------------------*/
/*!*
 *
 * Digital Republiq Responsive CSS Framework
 *
 * Heavily borrowed what we need from the awesome inuit.css framework
 *
 */
/*------------------------------------*\
    $WARNING
\*------------------------------------*/
/*
 * dr.css, being an OO framework, works in keeping with the open/closed principle.
 * The variables you set previously are now being used throughout dr.css
 * to style everything we need for a base.
 * Any modules styles SHOULD NOT be added or modified in dr.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 email ben@digitalrepubliq.com.au
 */
/*------------------------------------*\
    $IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * dr.css’ default variables.
 * Redefine these in your own `_vars.scss` file
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/**
 * Default border-radius
 */
/**
 * 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 dr.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels)
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * dr.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.
 */
/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/* $input-border-color: #999;
$input-bg-color: #fff;
$input-text-color: $base-ui-color;
$input-radius: $base-border-radius; */
/* $base-input-height: 52px;
$label-font-size: 16px;
$input-highlight-border-color: #fff;
$input-highlight-glow-color: rgba(#fff, 0); */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * Media query mixin.
 *
 * Some broad breakpoints are defined in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * small
 * medium
 * small-and-medium
 * medium-and-up
 * large
 * extra-large
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(small){ [styles here] }`
 *
 * We work out your end points for you:
 */
/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
/*! 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 {
  position: relative;
  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 {
  -webkit-box-sizing: content-box;
  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: "“" "”" "‘" "’";
}

/*
 * 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] {
  -webkit-box-sizing: border-box;
  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 */
  -webkit-box-sizing: content-box; /* 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 {
  -webkit-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 {
  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,
.gform_fields > .gfield {
  margin-bottom: 15px;
}

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 13px;
}

/**
 * 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: 30px;
} /**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font: calc((15px/16px) * 1em)/calc(24px / 16px) "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-y: scroll;
  min-height: 100%;
}

p,
ul,
ol,
dl,
blockquote,
table,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin-bottom: 15px;
}

address {
  font-style: normal;
}

@media only screen and (max-width: 559px) {
  * {
    -webkit-overflow-scrolling: touch;
  }
}
/*------------------------------------*\
    $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=h1` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .h1 {
  font-size: 45px;
  font-size: calc((45px / 15px) * 1rem);
  line-height: 1.3;
}

h2, .h2 {
  font-size: 35px;
  font-size: calc((35px / 15px) * 1rem);
  line-height: 1.3;
}

h3, .h3 {
  font-size: 30px;
  font-size: calc((30px / 15px) * 1rem);
  line-height: 1.3;
}

h4, .h4 {
  font-size: 25px;
  font-size: calc((25px / 15px) * 1rem);
  line-height: 1.3;
}

h5, .h5 {
  font-size: 16px;
  font-size: calc((16px / 15px) * 1rem);
  line-height: 1.3;
}

h6, .h6 {
  font-size: 16px;
  font-size: calc((16px / 15px) * 1rem);
  line-height: 1.3;
}

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.super-large-text {
  font-size: 64px;
  font-size: calc((64px / 15px) * 1rem);
  line-height: 1.3;
}

.extra-large-text {
  font-size: 56px;
  font-size: calc((56px / 15px) * 1rem);
  line-height: 1.3;
}

.large-text {
  font-size: 45px;
  font-size: calc((45px / 15px) * 1rem);
  line-height: 1.3;
}

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.intro-text` class is used to make the introductory text (usually a paragraph) of a document slightly larger.
 */
.intro-text {
  font-size: 16.875px;
  font-size: calc((16.875px / 15px) * 1rem);
  line-height: 1.3;
}

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.small-text {
  font-size: 14px;
  font-size: calc((14px / 15px) * 1rem);
  line-height: 1.3;
}

.tiny-text {
  font-size: 13px;
  font-size: calc((13px / 15px) * 1rem);
  line-height: 1.3;
}

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto;
  font-size: 13px;
  line-height: 1;
  border: 1px solid #000;
  padding: 15px;
}

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

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Fluid images.
 */
img {
  width: auto;
  height: auto;
}
img, img[height], img[width] {
  max-width: 100%;
}
img.img--full {
  width: 100%;
}

/**
 * Non-fluid images if you've specify `width` and/or `height` attributes.
 */
img[width].img--auto,
img[height].img--auto {
  max-width: none;
}

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px;
}

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 15px;
  margin-left: 15px;
}

.img--left {
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;
}

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 15px;
  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: 75px;
}

.img--medium {
  height: 150px;
}

.img--tall {
  height: 225px;
}

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block;
}

.bg-image {
  background-repeat: no-repeat;
  background-position: center center;
}

.bg-image--cover {
  background-size: cover;
}

.bg-image--contain {
  background-size: contain;
}

/*------------------------------------*\
    $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;
}

ul.no-style,
ol.no-style {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

/*------------------------------------*\
    $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: calc(24px / 4);
  text-align: left;
}
@media only screen and (max-width: 559px) {
  th,
  td {
    padding: calc(24px / 2);
  }
}

/**
 * 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%;
}

.table {
  border: 1px solid #000;
}
.table th,
.table thead td {
  font-weight: bold;
}
.table th,
.table td {
  vertical-align: top;
}
.table thead tr td,
.table thead tr th,
.table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #000;
}

@media only screen and (max-width: 559px) {
  .table {
    width: 100%;
  }
  .table thead tr td,
  .table thead tr th,
  .table tbody tr:not(:last-child) td {
    border-bottom: none;
  }
  .table tbody tr:not(:last-child) td:last-child {
    border-bottom: 1px solid #000;
  }
  .table.table--reversed tbody tr:not(:last-child) td:last-child {
    border-color: #000;
  }
  .table thead {
    display: none;
  }
  .table tbody td {
    display: block;
  }
  .table tbody td:before {
    content: attr(data-th);
    font-weight: bold;
    display: block;
  }
}
/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid #000;
}
.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;
}

/**
 * Objects and abstractions
 */
.lazy-media {
  position: relative;
  margin: 0;
  padding: 0;
}

.lazy-media__placeholder,
.lazy-media__image,
.lazy-media__fallback {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  will-change: opacity;
}
.lazy-media__placeholder.loaded,
.lazy-media__image.loaded,
.lazy-media__fallback.loaded {
  opacity: 1;
}

.lazy-media__placeholder {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  /* this is needed so Safari keeps sharp edges */
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  z-index: 1;
}
.lazy-media__placeholder.loaded {
  opacity: 0.6;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.lazy-media__image,
.lazy-media__fallback {
  z-index: 2;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.lazy-media.lazy-media--auto .lazy-media__placeholder,
.lazy-media.lazy-media--auto .lazy-media__image,
.lazy-media.lazy-media--auto .lazy-media__fallback {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.lazy-media.lazy-media--contain .lazy-media__placeholder,
.lazy-media.lazy-media--contain .lazy-media__image,
.lazy-media.lazy-media--contain .lazy-media__fallback {
  -o-object-fit: contain;
  object-fit: contain;
}

.lazy-media.lazy-media--bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.wrap {
  width: 1184px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.wrap:after {
  content: "";
  display: table;
  clear: both;
}
.wrap.wrap--wide {
  width: 1184px;
}
.wrap.wrap--full {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.wrap.wrap--hard {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

@media only screen and (max-width: 859px) {
  .wrap:not(.wrap--hard) {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*------------------------------------*\
    $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>
 *
 */
/**
 * Grid wrapper
 */
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: -15px;
}
.grid:after {
  content: "";
  display: table;
  clear: both;
}
.grid.grid--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.grid.grid--flipped {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.grid.grid--flipped.grid--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.grid.grid--hard {
  margin-left: 0;
}
.grid.grid--hard > .grid__item {
  padding-left: 0;
}
.grid.grid--top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.grid.grid--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.grid.grid--bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/**
 * Very infrequently occuring grid wrappers as children of grid wrappers.
 */
.grid > .grid {
  margin-left: 0;
}

.grid__item {
  padding-left: 15px;
  max-width: 100%;
  vertical-align: top;
}
.grid__item:after {
  content: "";
  display: table;
  clear: both;
}
.grid__item.grid__item--top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.grid__item.grid__item--center {
  -ms-flex-item-align: center;
  align-self: center;
}
.grid__item.grid__item--bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

/*------------------------------------*\
    $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>
 *
 */
.nav {
  list-style: none;
  margin-left: 0;
}
.nav:after {
  content: "";
  display: table;
  clear: both;
}
.nav,
.nav li {
  margin-bottom: 0;
}
.nav li.ignore > a {
  cursor: default;
  pointer-events: none;
}
.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: calc(24px / 2);
}

/**
 * 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>
 *
 */
.nav--fit {
  display: table;
  width: 100%;
}
.nav--fit > li {
  display: table-cell;
}
.nav--fit > li > a {
  display: block;
}

/*------------------------------------*\
    $BREADCRUMB
\*------------------------------------*/
/**
 * Simple breadcrumb styling to apply to (ordered) lists. Extends `.nav`, e.g.:
 *
   <ol class="nav breadcrumb">
       <li><a href="#">Home</a></li>
       <li><a href="#">About</a></li>
       <li><a href="#">The Board</a></li>
       <li class="current"><a href="#">Directors</a></li>
   </ol>
 *
 */
.breadcrumb > li + li:before {
  content: "»" " ";
}

/**
 * For denoting a path-like structure, GitHub style, e.g.:
 *
   <ol class="nav breadcrumb--path">
       <li class="breadcrumb__root"><a href="#">dr.css</a></li>
       <li><a href="#">dr.css</a></li>
       <li><a href="#">partials</a></li>
       <li class="current"><a href="#">objects</a></li>
   </ol>
 *
 */
.breadcrumb--path > li + li:before {
  content: "/" " ";
}

/**
 * Assign a delimiter on the fly through a data attribute, e.g.:
 *
   <ol class="nav breadcrumb">
       <li><a href="#">Home</a></li>
       <li data-breadcrumb="|"><a href="#">About</a></li>
       <li data-breadcrumb="|"><a href="#">The Board</a></li>
       <li data-breadcrumb="|" class="current"><a href="#">Directors</a></li>
   </ol>
 *
 */
.breadcrumb > li + li[data-breadcrumb]:before {
  content: attr(data-breadcrumb) " ";
}

/**
 * Denote the root of the tree.
 */
.breadcrumb__root {
  font-weight: bold;
}

/*------------------------------------*\
    $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>
 *
 * These 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; }
 *
 */
.sprite, .ginput_card_security_code_icon,
.gform_card_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;
  /**
   * 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;
  position: relative;
  display: inline-block;
  top: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  max-width: 100%;
}
.sprite:before, .ginput_card_security_code_icon:before,
.gform_card_icon:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

a.sprite, a.ginput_card_security_code_icon,
a.gform_card_icon,
a.ico,
button.sprite,
button.ginput_card_security_code_icon,
button.gform_card_icon,
button.ico {
  padding: 0;
  border: none;
  background-color: transparent;
  text-indent: -9999px;
  outline: none;
}
a.sprite:hover, a.ginput_card_security_code_icon:hover,
a.gform_card_icon:hover,
a.ico:hover,
button.sprite:hover,
button.ginput_card_security_code_icon:hover,
button.gform_card_icon:hover,
button.ico:hover {
  background-color: transparent;
}
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.ico:focus,
a.ico: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.ico:focus,
button.ico:active {
  outline: none;
}

/*------------------------------------*\
    $BUTTONS.CSS
\*------------------------------------*/
/**
 * Based on beautons - 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;
}

.btn--auto {
  min-width: 0;
}

.btn--ico,
.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 {
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  padding: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn--ico .ico {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/*------------------------------------*\
    $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.
 *
 */
.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: calc((calc(24px / 16px) * 0.666667) * 1em);
  padding-right: calc((calc(24px / 16px) * 0.166667) * 1em);
  padding-left: calc((calc(24px / 16px) * 0.166667) * 1em);
  /* =1.50em */
  text-align: center;
  background-color: #000;
  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;
}

.gform_title {
  margin-bottom: 0;
  line-height: 1;
}

.gform_heading {
  padding-bottom: 15px;
}

.gform_description {
  display: block;
  padding-top: 15px;
}

.gform_fields {
  list-style: none;
  margin: 0;
  padding-left: 0 !important;
}
.gform_fields:after {
  content: "";
  display: table;
  clear: both;
}

.ginput_container:after {
  content: "";
  display: table;
  clear: both;
}

.gform_fields > .gfield {
  margin-bottom: 20px;
  padding-left: 0;
}
.gform_fields > .gfield:last-child {
  margin-bottom: 0;
}
.gform_fields > .gfield:before {
  content: none;
}

.gfield_required {
  padding-left: 4px;
}

.gfield_description,
.gform_fields .instruction {
  color: #ccc;
  font-size: 14px;
  font-style: italic;
}

.gform_fields .instruction {
  padding-top: 4px;
}

.gfield_label,
.gpoll_field_label {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 2px;
}

.ginput_container label {
  display: block;
  font-weight: normal !important;
  color: #525E66 !important;
}

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

::-moz-placeholder {
  color: #ccc;
}

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

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

.gform_fields textarea,
.gform_fields input:not([type=checkbox]):not([type=radio]):not([type=submit]) {
  display: block;
  max-width: 100%;
  width: 100%;
  background: #fff;
  border: 1px solid #D8D8D8;
  color: #161616;
  padding: 8px 15px;
  height: 50px;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  cursor: default;
  border-radius: 2px;
  -webkit-appearance: none;
}
.gform_fields textarea.placeholder,
.gform_fields input:not([type=checkbox]):not([type=radio]):not([type=submit]).placeholder {
  color: #ccc;
}
.gform_fields textarea:focus,
.gform_fields input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus {
  outline: none;
  border-color: #D8D8D8;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.gform_fields textarea:hover,
.gform_fields input:not([type=checkbox]):not([type=radio]):not([type=submit]):hover {
  cursor: text;
}

.gform_fields textarea {
  padding-top: 6px;
  padding-bottom: 6px;
  height: 130px;
  resize: vertical;
}

ul.gfield_radio,
ul.gfield_checkbox {
  list-style: none;
  margin: 0;
  padding: calc(24px / 2) 0 0 0;
}
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;
}
ul.gfield_radio label,
ul.gfield_checkbox label {
  padding-left: 8px;
  margin-top: 4px;
}
ul.gfield_radio li,
ul.gfield_checkbox li {
  width: auto;
  margin-bottom: 7px;
  margin-right: 20px;
}
ul.gfield_radio li:last-child,
ul.gfield_checkbox li:last-child {
  margin-right: 0;
}
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;
}
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;
}
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: 15px;
}

.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: 560px) and (max-width: 859px) {
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto;
  }
}
@media only screen and (max-width: 559px) {
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto;
  }
}
.gform_fields select.hasCustomSelect {
  width: 100% !important;
}

.gform_fields select:focus {
  outline: none;
}

.gform_fields select[multiple] {
  padding: 12px;
  height: 80px;
}

.ginput_container_select {
  position: relative;
}
.ginput_container_select select {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.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: 13px;
  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: 559px) {
  .ginput_container_fileupload .gform_button_select_files {
    margin-left: 0;
    width: 100%;
    margin-top: 15px;
  }
}

.ginput_complex {
  margin-bottom: 10px;
}
.ginput_complex > span {
  display: block;
  margin-bottom: 20px;
}
.ginput_complex label {
  font-size: 15px;
  padding-top: 4px;
}

.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 .customSelect: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 .customSelect:first-of-type input {
  width: 100%;
}

.ginput_right,
.ginput_cardinfo_right,
.ginput_card_expiration_container .customSelect: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 .customSelect:last-of-type input {
  width: 100%;
}

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

.chzn-drop {
  color: #161616;
}

.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: #D8D8D8;
  padding-left: 12px;
  font-size: 15px;
}
.gfield.with-chzn .chzn-container .chzn-single div b {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 5L6.6 9V0H5.3v9.1L1.2 5 0 6l6 6 6-6z' fill='%237A8591' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-position: right 50%;
}
.gfield.with-chzn .chzn-container.chzn-container-active .chzn-single {
  outline: none;
  border-color: #D8D8D8;
  -webkit-box-shadow: none;
  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: #8A0E1D;
}

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  height: 50px;
}

.gform_wrapper .chosen-container .chosen-drop {
  color: #000;
}

.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: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gfield .clear-multi {
  height: 50px;
}
.gfield .clear-multi > .ginput_container:last-child {
  float: right;
}

.ginput_container_date {
  position: relative;
}
.ginput_container_date input.datepicker_with_icon {
  padding-right: calc(24px * 2);
}
.ginput_container_date input.datepicker_with_icon + .ui-datepicker-trigger {
  width: 20px;
  right: 10px;
  cursor: pointer;
}

.gsection_title {
  margin-bottom: 0;
  line-height: 1;
  font-size: 30px;
  font-size: calc((30px / 15px) * 1rem);
  line-height: 1.3;
}
.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: calc(24px / 2) 0 0;
  font-size: 16px;
  font-size: calc((16px / 15px) * 1rem);
  line-height: 1.3;
}

.gf_page_steps {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-radius: 4px;
  overflow: auto;
  padding-left: calc(24px / 2);
}

.gf_step {
  float: left;
  margin-right: calc(24px * 2);
  font-size: 16px;
  font-size: calc((16px / 15px) * 1rem);
  line-height: 1.3;
  line-height: 1.5;
}
.gf_step a {
  color: #000;
}
.gf_step.gf_step_active {
  color: #ccc;
}

.gf_progressbar_wrapper {
  padding: 15px 0;
  margin-bottom: 15px;
}

.gf_progressbar_title {
  font-size: 16px;
  font-size: calc((16px / 15px) * 1rem);
  line-height: 1.3;
  margin-bottom: calc(24px / 2);
  color: #ccc;
}

.gf_progressbar {
  background: transparent;
  height: 15px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.gf_progressbar_percentage {
  background: #ccc;
  height: 9px;
  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: 15px 0;
  margin: 15px 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;
  -webkit-transform: translateX(-50%);
  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%;
  -webkit-transform: translateX(-50%) translateY(-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: 559px) {
  .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: 15px;
}
@media only screen and (max-width: 859px) {
  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: calc(24px / 2);
  padding-right: calc(24px / 2);
}
.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;
}

.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: #8A0E1D;
  background: none;
}

.gfield_error textarea,
.gfield_error input:not([type=checkbox]):not([type=radio]):not([type=submit]) {
  border-color: #8A0E1D;
  background-color: #fff;
  color: #8A0E1D;
}
.gfield_error .styled-select,
.gfield_error .customSelect {
  border-color: #8A0E1D;
  color: #8A0E1D;
}

.validation_error {
  margin-bottom: 15px;
  background: #8A0E1D;
  padding: calc(24px / 4) 15px;
  border-radius: 4px;
  color: #fff;
}

.gfield_description.validation_message {
  display: none;
}

#gforms_confirmation_message {
  margin-bottom: 15px;
}

.gform_wrapper .gfield_password_strength {
  border: 1px solid #E6E6E6;
  margin: 0 0 20px 0;
  padding: calc(24px / 2);
  text-align: center;
  min-width: 200px;
  width: 100%;
  background-color: #fff;
  color: #000;
  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: #a2d3a2;
  border-color: #479646;
  color: #377339;
}
.gform_wrapper .gfield_password_strength.short, .gform_wrapper .gfield_password_strength.mismatch {
  background-color: #fbcece;
  border-color: #f04040;
  color: #f04040;
}

.ginput_complex.ginput_container_password > span {
  margin-bottom: 0;
}

.gform_footer {
  text-align: left;
  padding: 15px 0 0;
  margin-top: 30px;
}
.gform_footer:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 559px) {
  .gform_footer {
    padding-left: calc(24px / 2);
    padding-right: calc(24px / 2);
  }
}

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

.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(../images/spinner.svg);
  background-size: contain;
  width: 42px;
  height: 42px;
  right: auto;
  left: 50%;
  margin-left: -21px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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: 559px) {
  .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.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 {
  width: 100%;
}
.gfield.single-option .check-list 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;
}

.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: 560px) and (max-width: 859px) {
  .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: calc(24px / 2);
  }
}
@media only screen and (max-width: 559px) {
  .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: calc(24px / 4);
  }
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_four {
    float: right;
    padding-left: calc(24px / 4);
  }
  .gfield.gf_fourth_three {
    clear: both;
  }
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_four {
    padding-right: 0;
  }
}
.row,
.row__inner,
.row__header,
.row__body,
.row__content,
.row__media,
.row__footer {
  position: relative;
}

.row {
  padding: calc(24px * 3) 0;
}
@media only screen and (min-width: 560px) and (max-width: 859px) {
  .row {
    padding: calc(24px * 2) 0;
  }
}
@media only screen and (max-width: 559px) {
  .row {
    padding: 15px 0;
  }
}

.row__header,
.row__footer {
  text-align: center;
}

.row__header {
  padding-bottom: calc(24px * 2);
}
@media only screen and (max-width: 559px) {
  .row__header {
    padding-bottom: 15px;
  }
}

.row__footer {
  padding-top: calc(24px * 2);
}
@media only screen and (max-width: 559px) {
  .row__footer {
    padding-top: 15px;
  }
}

.row__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.row__media > * {
  width: 100%;
}

.row__media-button {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  /* &,
  &:focus,
  &:hover,
  &:active {
  	border-radius: 50%;
  	background-color: $colour-light;
  } */
}

.row__media--top {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.row__media--middle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row__media--bottom {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row__media--left {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.row__media--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.row__media--right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.row.row--form:not(.row--form-content) .row__content {
  width: 860px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.row.row--form-content .grid__item:not(:last-child),
.row.row--multi-column .grid__item:not(:last-child) {
  margin-bottom: 15px;
}

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

.modal__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.6s;
  transition: background-color 0.6s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.modal__inner {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 18px;
}

.modal.modal--open {
  pointer-events: all;
}
.modal.modal--open .modal__bg {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.modal.modal--open .modal__inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

.modal.modal--right .modal__inner,
.modal.modal--left .modal__inner {
  top: 0;
  height: 100%;
  width: 400px;
  max-width: 90%;
  position: fixed;
}

.modal.modal--left .modal__inner {
  left: 0;
  right: auto;
  -webkit-transform: translateY(0) translateX(-100%);
  transform: translateY(0) translateX(-100%);
}

.modal.modal--right .modal__inner {
  left: auto;
  right: 0;
  -webkit-transform: translateY(0) translateX(100%);
  transform: translateY(0) translateX(100%);
}

.modal.modal--left.modal--open .modal__inner,
.modal.modal--right.modal--open .modal__inner {
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

html.modal-open {
  overflow: hidden;
}
html.modal-open body {
  overflow: hidden;
}

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in dr.css, most commonly the grid system
 *
 * We have a mixin to generate our widths and their breakpoint-specific variations.
 */
/**
* Whole
*/
.one-whole {
  width: 100%;
}

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

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

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

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

.three-quarters, .nine-twelfths, .six-eighths {
  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%;
}

.hide {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

/**
 * 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.
 *
 */
@media only screen and (max-width: 559px) {
  /**
  * Whole
  */
  .small-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .small-one-half, .small-six-twelfths, .small-five-tenths, .small-four-eighths, .small-three-sixths, .small-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .small-one-third, .small-four-twelfths, .small-two-sixths {
    width: 33.333%;
  }
  .small-two-thirds, .small-eight-twelfths, .small-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .small-one-quarter, .small-three-twelfths, .small-two-eighths {
    width: 25%;
  }
  .small-three-quarters, .small-nine-twelfths, .small-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .small-one-fifth, .small-two-tenths {
    width: 20%;
  }
  .small-two-fifths, .small-four-tenths {
    width: 40%;
  }
  .small-three-fifths, .small-six-tenths {
    width: 60%;
  }
  .small-four-fifths, .small-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .small-one-sixth, .small-two-twelfths {
    width: 16.666%;
  }
  .small-five-sixths, .small-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .small-one-eighth {
    width: 12.5%;
  }
  .small-three-eighths {
    width: 37.5%;
  }
  .small-five-eighths {
    width: 62.5%;
  }
  .small-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .small-one-tenth {
    width: 10%;
  }
  .small-three-tenths {
    width: 30%;
  }
  .small-seven-tenths {
    width: 70%;
  }
  .small-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .small-one-twelfth {
    width: 8.333%;
  }
  .small-five-twelfths {
    width: 41.666%;
  }
  .small-seven-twelfths {
    width: 58.333%;
  }
  .small-eleven-twelfths {
    width: 91.666%;
  }
  .small-hide {
    display: none !important;
  }
  .small-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .small-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .small-text--left {
    text-align: left !important;
  }
  .small-text--right {
    text-align: right !important;
  }
  .small-text--center {
    text-align: center !important;
  }
  .small-float--left {
    float: left !important;
  }
  .small-float--right {
    float: right !important;
  }
  .small-float-none {
    float: none !important;
  }
  .small-hard--left {
    padding-left: 0 !important;
  }
  .small-hard--right {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 560px) and (max-width: 859px) {
  /**
  * Whole
  */
  .medium-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .medium-one-half, .medium-six-twelfths, .medium-five-tenths, .medium-four-eighths, .medium-three-sixths, .medium-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .medium-one-third, .medium-four-twelfths, .medium-two-sixths {
    width: 33.333%;
  }
  .medium-two-thirds, .medium-eight-twelfths, .medium-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .medium-one-quarter, .medium-three-twelfths, .medium-two-eighths {
    width: 25%;
  }
  .medium-three-quarters, .medium-nine-twelfths, .medium-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .medium-one-fifth, .medium-two-tenths {
    width: 20%;
  }
  .medium-two-fifths, .medium-four-tenths {
    width: 40%;
  }
  .medium-three-fifths, .medium-six-tenths {
    width: 60%;
  }
  .medium-four-fifths, .medium-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .medium-one-sixth, .medium-two-twelfths {
    width: 16.666%;
  }
  .medium-five-sixths, .medium-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .medium-one-eighth {
    width: 12.5%;
  }
  .medium-three-eighths {
    width: 37.5%;
  }
  .medium-five-eighths {
    width: 62.5%;
  }
  .medium-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .medium-one-tenth {
    width: 10%;
  }
  .medium-three-tenths {
    width: 30%;
  }
  .medium-seven-tenths {
    width: 70%;
  }
  .medium-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .medium-one-twelfth {
    width: 8.333%;
  }
  .medium-five-twelfths {
    width: 41.666%;
  }
  .medium-seven-twelfths {
    width: 58.333%;
  }
  .medium-eleven-twelfths {
    width: 91.666%;
  }
  .medium-hide {
    display: none !important;
  }
  .medium-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .medium-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .medium-text--left {
    text-align: left !important;
  }
  .medium-text--right {
    text-align: right !important;
  }
  .medium-text--center {
    text-align: center !important;
  }
  .medium-float--left {
    float: left !important;
  }
  .medium-float--right {
    float: right !important;
  }
  .medium-float-none {
    float: none !important;
  }
  .medium-hard--left {
    padding-left: 0 !important;
  }
  .medium-hard--right {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 560px) {
  /**
  * Whole
  */
  .medium-and-up-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .medium-and-up-one-half, .medium-and-up-six-twelfths, .medium-and-up-five-tenths, .medium-and-up-four-eighths, .medium-and-up-three-sixths, .medium-and-up-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .medium-and-up-one-third, .medium-and-up-four-twelfths, .medium-and-up-two-sixths {
    width: 33.333%;
  }
  .medium-and-up-two-thirds, .medium-and-up-eight-twelfths, .medium-and-up-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .medium-and-up-one-quarter, .medium-and-up-three-twelfths, .medium-and-up-two-eighths {
    width: 25%;
  }
  .medium-and-up-three-quarters, .medium-and-up-nine-twelfths, .medium-and-up-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .medium-and-up-one-fifth, .medium-and-up-two-tenths {
    width: 20%;
  }
  .medium-and-up-two-fifths, .medium-and-up-four-tenths {
    width: 40%;
  }
  .medium-and-up-three-fifths, .medium-and-up-six-tenths {
    width: 60%;
  }
  .medium-and-up-four-fifths, .medium-and-up-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .medium-and-up-one-sixth, .medium-and-up-two-twelfths {
    width: 16.666%;
  }
  .medium-and-up-five-sixths, .medium-and-up-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .medium-and-up-one-eighth {
    width: 12.5%;
  }
  .medium-and-up-three-eighths {
    width: 37.5%;
  }
  .medium-and-up-five-eighths {
    width: 62.5%;
  }
  .medium-and-up-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .medium-and-up-one-tenth {
    width: 10%;
  }
  .medium-and-up-three-tenths {
    width: 30%;
  }
  .medium-and-up-seven-tenths {
    width: 70%;
  }
  .medium-and-up-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .medium-and-up-one-twelfth {
    width: 8.333%;
  }
  .medium-and-up-five-twelfths {
    width: 41.666%;
  }
  .medium-and-up-seven-twelfths {
    width: 58.333%;
  }
  .medium-and-up-eleven-twelfths {
    width: 91.666%;
  }
  .medium-and-up-hide {
    display: none !important;
  }
  .medium-and-up-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .medium-and-up-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .medium-and-up-text--left {
    text-align: left !important;
  }
  .medium-and-up-text--right {
    text-align: right !important;
  }
  .medium-and-up-text--center {
    text-align: center !important;
  }
  .medium-and-up-float--left {
    float: left !important;
  }
  .medium-and-up-float--right {
    float: right !important;
  }
  .medium-and-up-float-none {
    float: none !important;
  }
  .medium-and-up-hard--left {
    padding-left: 0 !important;
  }
  .medium-and-up-hard--right {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 859px) {
  /**
  * Whole
  */
  .small-and-medium-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .small-and-medium-one-half, .small-and-medium-six-twelfths, .small-and-medium-five-tenths, .small-and-medium-four-eighths, .small-and-medium-three-sixths, .small-and-medium-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .small-and-medium-one-third, .small-and-medium-four-twelfths, .small-and-medium-two-sixths {
    width: 33.333%;
  }
  .small-and-medium-two-thirds, .small-and-medium-eight-twelfths, .small-and-medium-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .small-and-medium-one-quarter, .small-and-medium-three-twelfths, .small-and-medium-two-eighths {
    width: 25%;
  }
  .small-and-medium-three-quarters, .small-and-medium-nine-twelfths, .small-and-medium-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .small-and-medium-one-fifth, .small-and-medium-two-tenths {
    width: 20%;
  }
  .small-and-medium-two-fifths, .small-and-medium-four-tenths {
    width: 40%;
  }
  .small-and-medium-three-fifths, .small-and-medium-six-tenths {
    width: 60%;
  }
  .small-and-medium-four-fifths, .small-and-medium-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .small-and-medium-one-sixth, .small-and-medium-two-twelfths {
    width: 16.666%;
  }
  .small-and-medium-five-sixths, .small-and-medium-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .small-and-medium-one-eighth {
    width: 12.5%;
  }
  .small-and-medium-three-eighths {
    width: 37.5%;
  }
  .small-and-medium-five-eighths {
    width: 62.5%;
  }
  .small-and-medium-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .small-and-medium-one-tenth {
    width: 10%;
  }
  .small-and-medium-three-tenths {
    width: 30%;
  }
  .small-and-medium-seven-tenths {
    width: 70%;
  }
  .small-and-medium-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .small-and-medium-one-twelfth {
    width: 8.333%;
  }
  .small-and-medium-five-twelfths {
    width: 41.666%;
  }
  .small-and-medium-seven-twelfths {
    width: 58.333%;
  }
  .small-and-medium-eleven-twelfths {
    width: 91.666%;
  }
  .small-and-medium-hide {
    display: none !important;
  }
  .small-and-medium-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .small-and-medium-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .small-and-medium-text--left {
    text-align: left !important;
  }
  .small-and-medium-text--right {
    text-align: right !important;
  }
  .small-and-medium-text--center {
    text-align: center !important;
  }
  .small-and-medium-float--left {
    float: left !important;
  }
  .small-and-medium-float--right {
    float: right !important;
  }
  .small-and-medium-float-none {
    float: none !important;
  }
  .small-and-medium-hard--left {
    padding-left: 0 !important;
  }
  .small-and-medium-hard--right {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 860px) {
  /**
  * Whole
  */
  .large-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .large-one-half, .large-six-twelfths, .large-five-tenths, .large-four-eighths, .large-three-sixths, .large-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .large-one-third, .large-four-twelfths, .large-two-sixths {
    width: 33.333%;
  }
  .large-two-thirds, .large-eight-twelfths, .large-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .large-one-quarter, .large-three-twelfths, .large-two-eighths {
    width: 25%;
  }
  .large-three-quarters, .large-nine-twelfths, .large-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .large-one-fifth, .large-two-tenths {
    width: 20%;
  }
  .large-two-fifths, .large-four-tenths {
    width: 40%;
  }
  .large-three-fifths, .large-six-tenths {
    width: 60%;
  }
  .large-four-fifths, .large-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .large-one-sixth, .large-two-twelfths {
    width: 16.666%;
  }
  .large-five-sixths, .large-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .large-one-eighth {
    width: 12.5%;
  }
  .large-three-eighths {
    width: 37.5%;
  }
  .large-five-eighths {
    width: 62.5%;
  }
  .large-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .large-one-tenth {
    width: 10%;
  }
  .large-three-tenths {
    width: 30%;
  }
  .large-seven-tenths {
    width: 70%;
  }
  .large-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .large-one-twelfth {
    width: 8.333%;
  }
  .large-five-twelfths {
    width: 41.666%;
  }
  .large-seven-twelfths {
    width: 58.333%;
  }
  .large-eleven-twelfths {
    width: 91.666%;
  }
  .large-hide {
    display: none !important;
  }
  .large-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .large-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .large-text--left {
    text-align: left !important;
  }
  .large-text--right {
    text-align: right !important;
  }
  .large-text--center {
    text-align: center !important;
  }
  .large-float--left {
    float: left !important;
  }
  .large-float--right {
    float: right !important;
  }
  .large-float-none {
    float: none !important;
  }
  .large-hard--left {
    padding-left: 0 !important;
  }
  .large-hard--right {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 1184px) {
  /**
  * Whole
  */
  .extra-large-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .extra-large-one-half, .extra-large-six-twelfths, .extra-large-five-tenths, .extra-large-four-eighths, .extra-large-three-sixths, .extra-large-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .extra-large-one-third, .extra-large-four-twelfths, .extra-large-two-sixths {
    width: 33.333%;
  }
  .extra-large-two-thirds, .extra-large-eight-twelfths, .extra-large-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .extra-large-one-quarter, .extra-large-three-twelfths, .extra-large-two-eighths {
    width: 25%;
  }
  .extra-large-three-quarters, .extra-large-nine-twelfths, .extra-large-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .extra-large-one-fifth, .extra-large-two-tenths {
    width: 20%;
  }
  .extra-large-two-fifths, .extra-large-four-tenths {
    width: 40%;
  }
  .extra-large-three-fifths, .extra-large-six-tenths {
    width: 60%;
  }
  .extra-large-four-fifths, .extra-large-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .extra-large-one-sixth, .extra-large-two-twelfths {
    width: 16.666%;
  }
  .extra-large-five-sixths, .extra-large-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .extra-large-one-eighth {
    width: 12.5%;
  }
  .extra-large-three-eighths {
    width: 37.5%;
  }
  .extra-large-five-eighths {
    width: 62.5%;
  }
  .extra-large-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .extra-large-one-tenth {
    width: 10%;
  }
  .extra-large-three-tenths {
    width: 30%;
  }
  .extra-large-seven-tenths {
    width: 70%;
  }
  .extra-large-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .extra-large-one-twelfth {
    width: 8.333%;
  }
  .extra-large-five-twelfths {
    width: 41.666%;
  }
  .extra-large-seven-twelfths {
    width: 58.333%;
  }
  .extra-large-eleven-twelfths {
    width: 91.666%;
  }
  .extra-large-hide {
    display: none !important;
  }
  .extra-large-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .extra-large-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .extra-large-text--left {
    text-align: left !important;
  }
  .extra-large-text--right {
    text-align: right !important;
  }
  .extra-large-text--center {
    text-align: center !important;
  }
  .extra-large-float--left {
    float: left !important;
  }
  .extra-large-float--right {
    float: right !important;
  }
  .extra-large-float-none {
    float: none !important;
  }
  .extra-large-hard--left {
    padding-left: 0 !important;
  }
  .extra-large-hard--right {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 1184px) {
  /**
  * Whole
  */
  .super-large-one-whole {
    width: 100%;
  }
  /**
  * Halves
  */
  .super-large-one-half, .super-large-six-twelfths, .super-large-five-tenths, .super-large-four-eighths, .super-large-three-sixths, .super-large-two-quarters {
    width: 50%;
  }
  /**
  * Thirds
  */
  .super-large-one-third, .super-large-four-twelfths, .super-large-two-sixths {
    width: 33.333%;
  }
  .super-large-two-thirds, .super-large-eight-twelfths, .super-large-four-sixths {
    width: 66.666%;
  }
  /**
  * Quarters
  */
  .super-large-one-quarter, .super-large-three-twelfths, .super-large-two-eighths {
    width: 25%;
  }
  .super-large-three-quarters, .super-large-nine-twelfths, .super-large-six-eighths {
    width: 75%;
  }
  /**
  * Fifths
  */
  .super-large-one-fifth, .super-large-two-tenths {
    width: 20%;
  }
  .super-large-two-fifths, .super-large-four-tenths {
    width: 40%;
  }
  .super-large-three-fifths, .super-large-six-tenths {
    width: 60%;
  }
  .super-large-four-fifths, .super-large-eight-tenths {
    width: 80%;
  }
  /**
  * Sixths
  */
  .super-large-one-sixth, .super-large-two-twelfths {
    width: 16.666%;
  }
  .super-large-five-sixths, .super-large-ten-twelfths {
    width: 83.333%;
  }
  /**
  * Eighths
  */
  .super-large-one-eighth {
    width: 12.5%;
  }
  .super-large-three-eighths {
    width: 37.5%;
  }
  .super-large-five-eighths {
    width: 62.5%;
  }
  .super-large-seven-eighths {
    width: 87.5%;
  }
  /**
  * Tenths
  */
  .super-large-one-tenth {
    width: 10%;
  }
  .super-large-three-tenths {
    width: 30%;
  }
  .super-large-seven-tenths {
    width: 70%;
  }
  .super-large-nine-tenths {
    width: 90%;
  }
  /**
  * Twelfths
  */
  .super-large-one-twelfth {
    width: 8.333%;
  }
  .super-large-five-twelfths {
    width: 41.666%;
  }
  .super-large-seven-twelfths {
    width: 58.333%;
  }
  .super-large-eleven-twelfths {
    width: 91.666%;
  }
  .super-large-hide {
    display: none !important;
  }
  .super-large-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .super-large-soft--sides {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .super-large-text--left {
    text-align: left !important;
  }
  .super-large-text--right {
    text-align: right !important;
  }
  .super-large-text--center {
    text-align: center !important;
  }
  .super-large-float--left {
    float: left !important;
  }
  .super-large-float--right {
    float: right !important;
  }
  .super-large-float-none {
    float: none !important;
  }
  .super-large-hard--left {
    padding-left: 0 !important;
  }
  .super-large-hard--right {
    padding-right: 0 !important;
  }
}
/*------------------------------------*\
    $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.
 */
/*------------------------------------*\
    $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: 15px !important;
}

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

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

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

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

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

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

.push-half {
  margin: calc(24px / 2) !important;
}

.push-half--top {
  margin-top: calc(24px / 2) !important;
}

.push-half--right {
  margin-right: calc(24px / 2) !important;
}

.push-half--bottom {
  margin-bottom: calc(24px / 2) !important;
}

.push-half--left {
  margin-left: calc(24px / 2) !important;
}

.push-half--ends {
  margin-top: calc(24px / 2) !important;
  margin-bottom: calc(24px / 2) !important;
}

.push-half--sides {
  margin-right: calc(24px / 2) !important;
  margin-left: calc(24px / 2) !important;
}

.push-double {
  margin: calc(24px * 2) !important;
}

.push-double--top {
  margin-top: calc(24px * 2) !important;
}

.push-double--right {
  margin-right: calc(24px * 2) !important;
}

.push-double--bottom {
  margin-bottom: calc(24px * 2) !important;
}

.push-double--left {
  margin-left: calc(24px * 2) !important;
}

.push-double--ends {
  margin-top: calc(24px * 2) !important;
  margin-bottom: calc(24px * 2) !important;
}

.push-double--sides {
  margin-right: calc(24px * 2) !important;
  margin-left: calc(24px * 2) !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: 15px !important;
}

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

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

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

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

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

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

.soft-half {
  padding: calc(24px / 2) !important;
}

.soft-half--top {
  padding-top: calc(24px / 2) !important;
}

.soft-half--right {
  padding-right: calc(24px / 2) !important;
}

.soft-half--bottom {
  padding-bottom: calc(24px / 2) !important;
}

.soft-half--left {
  padding-left: calc(24px / 2) !important;
}

.soft-half--ends {
  padding-top: calc(24px / 2) !important;
  padding-bottom: calc(24px / 2) !important;
}

.soft-half--sides {
  padding-right: calc(24px / 2) !important;
  padding-left: calc(24px / 2) !important;
}

.soft-double {
  padding: calc(24px * 2) !important;
}

.soft-double--top {
  padding-top: calc(24px * 2) !important;
}

.soft-double--right {
  padding-right: calc(24px * 2) !important;
}

.soft-double--bottom {
  padding-bottom: calc(24px * 2) !important;
}

.soft-double--left {
  padding-left: calc(24px * 2) !important;
}

.soft-double--ends {
  padding-top: calc(24px * 2) !important;
  padding-bottom: calc(24px * 2) !important;
}

.soft-double--sides {
  padding-right: calc(24px * 2) !important;
  padding-left: calc(24px * 2) !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: -15px !important;
  margin-left: -15px !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/lowercase case to an element
 */
.caps,
.uppercase {
  text-transform: uppercase !important;
}

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

.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: 559px) {
  .accessibility--small,
  .visuallyhidden--small {
    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: 560px) and (max-width: 859px) {
  .accessibility--medium,
  .visuallyhidden--medium {
    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: 560px) {
  .accessibility--medium-and-up,
  .visuallyhidden--medium-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: 859px) {
  .accessibility--small-and-medium,
  .visuallyhidden--small-and-medium {
    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: 860px) {
  .accessibility--large,
  .visuallyhidden--large {
    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: 1184px) {
  .accessibility--extra-large,
  .visuallyhidden--extra-large {
    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;
  }
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.color--error {
  color: #8A0E1D !important;
}

.bg--error {
  background-color: #8A0E1D !important;
}

.border-top--error {
  border-top: 2px solid #8A0E1D !important;
}

.border-bottom--error {
  border-bottom: 2px solid #8A0E1D !important;
}

.border-right--error {
  border-right: 2px solid #8A0E1D !important;
}

.border-left--error {
  border-left: 2px solid #8A0E1D !important;
}

.color--success {
  color: #37803a !important;
}

.bg--success {
  background-color: #37803a !important;
}

.border-top--success {
  border-top: 2px solid #37803a !important;
}

.border-bottom--success {
  border-bottom: 2px solid #37803a !important;
}

.border-right--success {
  border-right: 2px solid #37803a !important;
}

.border-left--success {
  border-left: 2px solid #37803a !important;
}

.color--light {
  color: #fff !important;
}

.bg--light {
  background-color: #fff !important;
}

.border-top--light {
  border-top: 2px solid #fff !important;
}

.border-bottom--light {
  border-bottom: 2px solid #fff !important;
}

.border-right--light {
  border-right: 2px solid #fff !important;
}

.border-left--light {
  border-left: 2px solid #fff !important;
}

.color--dark {
  color: #000 !important;
}

/*.bg--dark {
 	background-color: $colour-dark !important;
} */
.border-top--dark {
  border-top: 2px solid #000 !important;
}

.border-bottom--dark {
  border-bottom: 2px solid #000 !important;
}

.border-right--dark {
  border-right: 2px solid #000 !important;
}

.border-left--dark {
  border-left: 2px solid #000 !important;
}

.color--soft {
  color: #ccc !important;
}

.bg--soft {
  background-color: #ccc !important;
}

.border-top--soft {
  border-top: 2px solid #ccc !important;
}

.border-bottom--soft {
  border-bottom: 2px solid #ccc !important;
}

.border-right--soft {
  border-right: 2px solid #ccc !important;
}

.border-left--soft {
  border-left: 2px solid #ccc !important;
}

.color--primary {
  color: #ccc !important;
}

.bg--primary {
  background-color: #ccc !important;
}

.border-top--primary {
  border-top: 2px solid #ccc !important;
}

.border-bottom--primary {
  border-bottom: 2px solid #ccc !important;
}

.border-right--primary {
  border-right: 2px solid #ccc !important;
}

.border-left--primary {
  border-left: 2px solid #ccc !important;
}

.color--secondary {
  color: #000 !important;
}

.bg--secondary {
  background-color: #000 !important;
}

.border-top--secondary {
  border-top: 2px solid #000 !important;
}

.border-bottom--secondary {
  border-bottom: 2px solid #000 !important;
}

.border-right--secondary {
  border-right: 2px solid #000 !important;
}

.border-left--secondary {
  border-left: 2px solid #000 !important;
}

.color--tertiary {
  color: #fff !important;
}

.bg--tertiary {
  background-color: #fff !important;
}

.border-top--tertiary {
  border-top: 2px solid #fff !important;
}

.border-bottom--tertiary {
  border-bottom: 2px solid #fff !important;
}

.border-right--tertiary {
  border-right: 2px solid #fff !important;
}

.border-left--tertiary {
  border-left: 2px solid #fff !important;
}

/**
 * She’s all yours, cap’n... Begin importing your stuff here.
 */
/*
FROM: https://github.com/bfred-it/object-fit-images
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
*/
@font-face {
  font-family: "dca";
  src: url("../fonts/dca.eot?lczspy");
  src: url("../fonts/dca.eot?lczspy#iefix") format("embedded-opentype"), url("../fonts/dca.woff2?lczspy") format("woff2"), url("../fonts/dca.ttf?lczspy") format("truetype"), url("../fonts/dca.woff?lczspy") format("woff"), url("../fonts/dca.svg?lczspy#dca") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=ico--], [class*=" ico--"], .ico {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dca" !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--chevron-left:before {
  content: "\e901";
}

.ico--chevron-right:before {
  content: "\e902";
}

.ico--chevron-down:before {
  content: "\e900";
}

.ico--chevron-up:before {
  content: "\e903";
}

.ico--arrow-right:before {
  content: "\e906";
}

.ico--arrow-left:before {
  content: "\e905";
}

.ico--arrow-up:before {
  content: "\e907";
}

.ico--arrow-down:before {
  content: "\e904";
}

.ico--chevron:before {
  content: "\e908";
}

.ico--circle-tick:before {
  content: "\e909";
}

.ico--close:before {
  content: "\e90a";
}

.ico--dot:before {
  content: "\e90b";
}

.ico--download:before {
  content: "\e90c";
}

.ico--linkedin:before {
  content: "\e90d";
}

.ico--logo:before {
  content: "\e90e";
}

.ico--marker:before {
  content: "\e90f";
}

.ico--menu:before {
  content: "\e910";
}

.ico--mouse:before {
  content: "\e911";
}

.ico--play:before {
  content: "\e912";
}

.ico--search:before {
  content: "\e913";
}

.ico--shield:before {
  content: "\e914";
}

.ico--tick:before {
  content: "\e915";
}

.ico--facebook:before {
  content: "\e916";
}

.ico--twitter:before {
  content: "\e917";
}

.ico--link:before {
  content: "\e918";
}

.ico--login:before {
  content: "\e919";
}

.ico--email:before {
  content: "\e920";
}

/*
 *  Make automatic content colour changes for rows here based on background modifier classes
 */
.bg--lightgrey {
  background: #F5F7F8;
  color: #7A8591;
}

.bg--default,
.bg--white {
  background: #fff;
  color: #7A8591;
}

.bg--brand,
.bg--dca,
.bg--data-services,
.bg--cities,
.bg--researchmaster,
.bg--research-master {
  color: #fff;
  /*
  p {
  	opacity: 0.75;
  }
  */
}
.bg--brand h1, .bg--brand h2, .bg--brand h3, .bg--brand h4, .bg--brand h5, .bg--brand h6, .bg--brand .h1, .bg--brand .h2, .bg--brand .h3, .bg--brand .h4, .bg--brand .h5, .bg--brand .h6, .bg--brand p,
.bg--dca h1,
.bg--dca h2,
.bg--dca h3,
.bg--dca h4,
.bg--dca h5,
.bg--dca h6,
.bg--dca .h1,
.bg--dca .h2,
.bg--dca .h3,
.bg--dca .h4,
.bg--dca .h5,
.bg--dca .h6,
.bg--dca p,
.bg--data-services h1,
.bg--data-services h2,
.bg--data-services h3,
.bg--data-services h4,
.bg--data-services h5,
.bg--data-services h6,
.bg--data-services .h1,
.bg--data-services .h2,
.bg--data-services .h3,
.bg--data-services .h4,
.bg--data-services .h5,
.bg--data-services .h6,
.bg--data-services p,
.bg--cities h1,
.bg--cities h2,
.bg--cities h3,
.bg--cities h4,
.bg--cities h5,
.bg--cities h6,
.bg--cities .h1,
.bg--cities .h2,
.bg--cities .h3,
.bg--cities .h4,
.bg--cities .h5,
.bg--cities .h6,
.bg--cities p,
.bg--researchmaster h1,
.bg--researchmaster h2,
.bg--researchmaster h3,
.bg--researchmaster h4,
.bg--researchmaster h5,
.bg--researchmaster h6,
.bg--researchmaster .h1,
.bg--researchmaster .h2,
.bg--researchmaster .h3,
.bg--researchmaster .h4,
.bg--researchmaster .h5,
.bg--researchmaster .h6,
.bg--researchmaster p,
.bg--research-master h1,
.bg--research-master h2,
.bg--research-master h3,
.bg--research-master h4,
.bg--research-master h5,
.bg--research-master h6,
.bg--research-master .h1,
.bg--research-master .h2,
.bg--research-master .h3,
.bg--research-master .h4,
.bg--research-master .h5,
.bg--research-master .h6,
.bg--research-master p {
  color: #fff;
}
.bg--brand .button--secondary, .bg--brand body.login #wp-submit, body.login .bg--brand #wp-submit,
.bg--brand body.login input.button-primary,
body.login .bg--brand input.button-primary,
.bg--dca .button--secondary,
.bg--dca body.login #wp-submit,
body.login .bg--dca #wp-submit,
.bg--dca body.login input.button-primary,
body.login .bg--dca input.button-primary,
.bg--data-services .button--secondary,
.bg--data-services body.login #wp-submit,
body.login .bg--data-services #wp-submit,
.bg--data-services body.login input.button-primary,
body.login .bg--data-services input.button-primary,
.bg--cities .button--secondary,
.bg--cities body.login #wp-submit,
body.login .bg--cities #wp-submit,
.bg--cities body.login input.button-primary,
body.login .bg--cities input.button-primary,
.bg--researchmaster .button--secondary,
.bg--researchmaster body.login #wp-submit,
body.login .bg--researchmaster #wp-submit,
.bg--researchmaster body.login input.button-primary,
body.login .bg--researchmaster input.button-primary,
.bg--research-master .button--secondary,
.bg--research-master body.login #wp-submit,
body.login .bg--research-master #wp-submit,
.bg--research-master body.login input.button-primary,
body.login .bg--research-master input.button-primary {
  border: 2px solid #fff;
  background: transparent;
}

.bg--dca {
  background: #1497D9;
}

.bg--data-services {
  background: #7E56C6;
}

.bg--cities {
  background: #43BEC6;
}

.bg--researchmaster,
.bg--research-master {
  background: #F3AF1C;
}

.dca-color {
  color: #1497D9;
}

.data-services-color {
  color: #7E56C6;
}

.cities-color {
  color: #43BEC6;
}

.research-mastercolor,
.research-master-color {
  color: #F3AF1C;
}

.bg--dark, .bg--darkgrey {
  background: #02323F;
  color: #fff;
}
.bg--dark h1, .bg--dark h2, .bg--dark h3, .bg--dark h4, .bg--dark h5, .bg--dark h6, .bg--dark .h1, .bg--dark .h2, .bg--dark .h3, .bg--dark .h4, .bg--dark .h5, .bg--dark .h6, .bg--dark p, .bg--darkgrey h1, .bg--darkgrey h2, .bg--darkgrey h3, .bg--darkgrey h4, .bg--darkgrey h5, .bg--darkgrey h6, .bg--darkgrey .h1, .bg--darkgrey .h2, .bg--darkgrey .h3, .bg--darkgrey .h4, .bg--darkgrey .h5, .bg--darkgrey .h6, .bg--darkgrey p {
  color: #fff;
}

.bg--midgrey {
  background: #9AA9B8;
  color: #fff;
}

.bg--gradient {
  background-image: linear-gradient(121deg, #1497D9 30%, #37BAEB 57%, #43BEC6 89%);
  color: #fff;
}

/* Also do the breakout boxes */
/*.row.bg--dark {

	.row__header,
	.row__body,
	.row__footer,
	.row__content,
	.row__media {
		color: $colour-light;
	}

	h1, h2, h3, h4, h5, h6,
	.h1, .h2, .h3, .h4, .h5, .h6 {
		color: $colour-soft;
	}

}

.row.bg--soft {

	h1, h2, h3, h4, h5, h6,
	.h1, .h2, .h3, .h4, .h5, .h6 {
		color: $base-ui-color;
	}

	a {
		&,
		&:visited {
			color: lighten($base-ui-color, 30%);
		}
		&:focus,
		&:active,
		&:hover {
			color: $base-ui-color;
		}
	}

} */
html, body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
  background-color: #ccc;
  color: #fff;
}

::selection {
  background-color: #ccc;
  color: #fff;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav a {
  text-decoration: none;
}

.nav.nav--stacked a {
  display: inline-block;
}

blockquote {
  quotes: none;
  text-indent: 0;
  border-radius: 0;
  padding: 30px;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  margin-top: 60px;
}
blockquote p {
  z-index: 1;
  position: relative;
  font-size: 25px;
  line-height: 41px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
blockquote:before, blockquote:after {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #F5F7F8;
  font-size: 200px;
  position: absolute;
  z-index: 0;
  line-height: 46px;
}
blockquote:before {
  content: "“";
  top: 14px;
  left: -40px;
}
blockquote:after {
  content: "”";
  right: 40px;
  bottom: -10px;
}
@media only screen and (max-width: 559px) {
  blockquote p {
    font-size: 22px;
    line-height: 30px;
  }
  blockquote:after {
    right: 0;
  }
}

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

p, .p {
  color: #7A8591;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 26px;
  font-weight: normal;
  letter-spacing: -0.09px;
}
p a, .p a {
  text-decoration: underline;
  color: inherit;
  font-weight: bold;
}

ul, ol {
  font-size: 17px;
  line-height: 33px;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: -0.09px;
  margin-left: 0;
}
ul a, ol a {
  text-decoration: underline;
  color: inherit;
  font-weight: bold;
}

ul {
  list-style-type: none;
}
ul li {
  padding-left: 27px;
  position: relative;
}
ul li:before {
  content: "•";
  font-size: 36px;
  position: absolute;
  left: 0;
  top: 0;
}
ul.ticks li:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dca" !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: "\e915";
  font-size: 10px;
  top: 9px;
}
ul.no-dots li {
  padding-left: 0;
}
ul.no-dots li:before {
  content: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
}
h1 i, h1 em, h2 i, h2 em, h3 i, h3 em, h4 i, h4 em, h5 i, h5 em, h6 i, h6 em,
.h1 i,
.h1 em, .h2 i, .h2 em, .h3 i, .h3 em, .h4 i, .h4 em, .h5 i, .h5 em, .h6 i, .h6 em {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
}

h1, .h1 {
  font-size: 45px;
  line-height: 55px;
  color: #02323F;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
@media only screen and (max-width: 559px) {
  h1, .h1 {
    font-size: 37px;
    line-height: 40px;
  }
}

h2, .h2 {
  font-size: 35px;
  line-height: 40px;
  color: #02323F;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.35px;
}

h3, .h3 {
  font-size: 25px;
  line-height: 31px;
  color: #02323F;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 9px;
  letter-spacing: -0.25px;
}

h4, .h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #02323F;
}

h5, .h5 {
  font-size: 16px;
  margin-bottom: 16px;
}

h6, .h6 {
  font-size: 17px;
  line-height: 20px;
  font-weight: normal;
}

p + h5, p + .h5 {
  margin-top: 70px;
}

span.br,
i.br {
  display: block;
  width: 0;
}

.button, body.login #wp-submit,
body.login input.button-primary {
  text-decoration: none;
}

.button--primary {
  display: inline-block;
  padding: 6px 60px 12px 0;
  font-size: 14px;
  font-weight: bold;
  margin-right: 30px;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  line-height: 1.3em;
  position: relative;
}
.button--primary:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dca" !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: "\e906";
  position: absolute;
  right: 0;
  top: 8px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.button--primary:hover:after, .button--primary:focus:after {
  -webkit-transform: translateX(-12px);
  transform: translateX(-12px);
}
.button--primary.button-colour--white {
  border-bottom-color: #fff;
}
.button--primary.button-colour--white, .button--primary.button-colour--white:after {
  color: #fff;
}
.button--primary.button-colour--black {
  border-bottom-color: #000;
}
.button--primary.button-colour--black, .button--primary.button-colour--black:after {
  color: #000;
}
.button--primary.button-colour--lightgrey {
  border-bottom-color: #F5F7F8;
}
.button--primary.button-colour--lightgrey, .button--primary.button-colour--lightgrey:after {
  color: #F5F7F8;
}
.button--primary.button-colour--midgrey {
  border-bottom-color: #9AA9B8;
}
.button--primary.button-colour--midgrey, .button--primary.button-colour--midgrey:after {
  color: #9AA9B8;
}
.button--primary.button-colour--darkgrey {
  border-bottom-color: #02323F;
}
.button--primary.button-colour--darkgrey, .button--primary.button-colour--darkgrey:after {
  color: #02323F;
}
.button--primary.button-colour--dca {
  border-bottom-color: #1497D9;
}
.button--primary.button-colour--dca, .button--primary.button-colour--dca:after {
  color: #1497D9;
}
.button--primary.button-colour--dataservices {
  border-bottom-color: #7E56C6;
}
.button--primary.button-colour--dataservices, .button--primary.button-colour--dataservices:after {
  color: #7E56C6;
}
.button--primary.button-colour--cities {
  border-bottom-color: #43BEC6;
}
.button--primary.button-colour--cities, .button--primary.button-colour--cities:after {
  color: #43BEC6;
}
.button--primary.button-colour--researchmaster {
  border-bottom-color: #F3AF1C;
}
.button--primary.button-colour--researchmaster, .button--primary.button-colour--researchmaster:after {
  color: #F3AF1C;
}

.button--secondary, body.login #wp-submit,
body.login input.button-primary {
  display: inline-block;
  padding: 20px 50px 0 50px;
  height: 62px;
  border-radius: 35px;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  margin-right: 30px;
  line-height: 1.3em;
  position: relative;
  border: 2px solid transparent;
}
.button--secondary.button-colour--white, body.login .button-colour--white#wp-submit,
body.login input.button-colour--white.button-primary {
  background: #fff;
  color: #7A8591;
}
.button--secondary.button-colour--white:hover, body.login .button-colour--white#wp-submit:hover,
body.login input.button-colour--white.button-primary:hover, .button--secondary.button-colour--white:focus, body.login .button-colour--white#wp-submit:focus,
body.login input.button-colour--white.button-primary:focus {
  background: #F5F7F8;
}
.button--secondary.button-colour--black, body.login .button-colour--black#wp-submit,
body.login input.button-colour--black.button-primary {
  background: #000;
}
.button--secondary.button-colour--black:hover, body.login .button-colour--black#wp-submit:hover,
body.login input.button-colour--black.button-primary:hover, .button--secondary.button-colour--black:focus, body.login .button-colour--black#wp-submit:focus,
body.login input.button-colour--black.button-primary:focus {
  background: black;
}
.button--secondary.button-colour--lightgrey, body.login .button-colour--lightgrey#wp-submit,
body.login input.button-colour--lightgrey.button-primary {
  background: #F5F7F8;
  color: #7A8591;
}
.button--secondary.button-colour--lightgrey:hover, body.login .button-colour--lightgrey#wp-submit:hover,
body.login input.button-colour--lightgrey.button-primary:hover, .button--secondary.button-colour--lightgrey:focus, body.login .button-colour--lightgrey#wp-submit:focus,
body.login input.button-colour--lightgrey.button-primary:focus {
  color: #626c76;
  background: #d7dfe3;
}
.button--secondary.button-colour--midgrey, body.login .button-colour--midgrey#wp-submit,
body.login input.button-colour--midgrey.button-primary {
  background: #9AA9B8;
}
.button--secondary.button-colour--midgrey:hover, body.login .button-colour--midgrey#wp-submit:hover,
body.login input.button-colour--midgrey.button-primary:hover, .button--secondary.button-colour--midgrey:focus, body.login .button-colour--midgrey#wp-submit:focus,
body.login input.button-colour--midgrey.button-primary:focus {
  background: #7c90a3;
}
.button--secondary.button-colour--darkgrey, body.login .button-colour--darkgrey#wp-submit,
body.login input.button-colour--darkgrey.button-primary {
  background: #02323F;
}
.button--secondary.button-colour--darkgrey:hover, body.login .button-colour--darkgrey#wp-submit:hover,
body.login input.button-colour--darkgrey.button-primary:hover, .button--secondary.button-colour--darkgrey:focus, body.login .button-colour--darkgrey#wp-submit:focus,
body.login input.button-colour--darkgrey.button-primary:focus {
  background: #000b0e;
}
.button--secondary.button-colour--dca, body.login .button-colour--dca#wp-submit,
body.login input.button-colour--dca.button-primary {
  background: #1497D9;
}
.button--secondary.button-colour--dca:hover, body.login .button-colour--dca#wp-submit:hover,
body.login input.button-colour--dca.button-primary:hover, .button--secondary.button-colour--dca:focus, body.login .button-colour--dca#wp-submit:focus,
body.login input.button-colour--dca.button-primary:focus {
  background: #1077aa;
}
.button--secondary.button-colour--dataservices, body.login .button-colour--dataservices#wp-submit,
body.login input.button-colour--dataservices.button-primary {
  background: #7E56C6;
}
.button--secondary.button-colour--dataservices:hover, body.login .button-colour--dataservices#wp-submit:hover,
body.login input.button-colour--dataservices.button-primary:hover, .button--secondary.button-colour--dataservices:focus, body.login .button-colour--dataservices#wp-submit:focus,
body.login input.button-colour--dataservices.button-primary:focus {
  background: #643bae;
}
.button--secondary.button-colour--cities, body.login .button-colour--cities#wp-submit,
body.login input.button-colour--cities.button-primary {
  background: #7E56C6;
}
.button--secondary.button-colour--cities:hover, body.login .button-colour--cities#wp-submit:hover,
body.login input.button-colour--cities.button-primary:hover, .button--secondary.button-colour--cities:focus, body.login .button-colour--cities#wp-submit:focus,
body.login input.button-colour--cities.button-primary:focus {
  background: #643bae;
}
.button--secondary.button-colour--researchmaster, body.login .button-colour--researchmaster#wp-submit,
body.login input.button-colour--researchmaster.button-primary {
  background: #F3AF1C;
}
.button--secondary.button-colour--researchmaster:hover, body.login .button-colour--researchmaster#wp-submit:hover,
body.login input.button-colour--researchmaster.button-primary:hover, .button--secondary.button-colour--researchmaster:focus, body.login .button-colour--researchmaster#wp-submit:focus,
body.login input.button-colour--researchmaster.button-primary:focus {
  background: #d1920b;
}

.button--square {
  height: 66px;
  min-width: 280px;
  border: 3px solid #fff;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 16px 50px 0 25px;
  display: inline-block;
  position: relative;
}

.button--full-width, body.login #wp-submit,
body.login input.button-primary {
  width: 100%;
}

.gform_wrapper input[type=button]:not(.button--secondary),
.gform_wrapper input[type=submit]:not(.button--secondary),
.gform_wrapper button[type=submit]:not(.button--secondary) {
  background: none;
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid;
  text-align: left;
  padding: 2px 15px 0 0;
  font-weight: bold;
  min-width: 180px;
  height: 50px;
  position: relative;
}
.gform_wrapper input[type=button]:not(.button--secondary):after,
.gform_wrapper input[type=submit]:not(.button--secondary):after,
.gform_wrapper button[type=submit]:not(.button--secondary):after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dca" !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: "\e906";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 13px;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.gform_wrapper input[type=button]:not(.button--secondary):hover:after, .gform_wrapper input[type=button]:not(.button--secondary):focus:after,
.gform_wrapper input[type=submit]:not(.button--secondary):hover:after,
.gform_wrapper input[type=submit]:not(.button--secondary):focus:after,
.gform_wrapper button[type=submit]:not(.button--secondary):hover:after,
.gform_wrapper button[type=submit]:not(.button--secondary):focus:after {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

.gform_wrapper input[type=button].button--secondary, .gform_wrapper body.login input[type=button]#wp-submit, body.login .gform_wrapper input[type=button]#wp-submit,
.gform_wrapper body.login input[type=button].button-primary,
body.login .gform_wrapper input[type=button].button-primary,
.gform_wrapper input[type=submit].button--secondary,
.gform_wrapper body.login input[type=submit]#wp-submit,
body.login .gform_wrapper input[type=submit]#wp-submit,
.gform_wrapper body.login input[type=submit].button-primary,
body.login .gform_wrapper input[type=submit].button-primary,
.gform_wrapper button[type=submit].button--secondary,
.gform_wrapper body.login button[type=submit]#wp-submit,
body.login .gform_wrapper button[type=submit]#wp-submit {
  padding-top: 0;
  margin-right: 0;
}

/* generic classes */
.brand-bg, .bg--brand {
  background: #F3AF1C;
}

.brand-color {
  color: #F3AF1C;
}

.underline {
  border-bottom-color: #F3AF1C;
}

/* hero */
.row.row--hero-with-solutions.explore-open:before {
  background-color: #F3AF1C;
}

.sidebar__nav ul.nav li.active a,
.sidebar__nav ul.nav a:hover {
  color: #F3AF1C;
}

.sidebar__nav ul.nav li.active {
  border-bottom: 2px solid #F3AF1C;
}

.members-posts .members-post-item__label {
  color: #F3AF1C;
}

.positions-posts .positions-post-item__label {
  color: #F3AF1C;
}

/* menu */
nav.menubar h3:before {
  background-color: #F3AF1C;
}
nav.menubar .inner ul li a:focus:before, nav.menubar .inner ul li a:hover:before {
  background: #F3AF1C;
}
nav.menubar .inner ul li.current-menu-item > a, nav.menubar .inner ul li.current-menu-parent > a, nav.menubar .inner ul li.current-menu-ancestor > a {
  color: #F3AF1C;
}
nav.menubar .inner ul li.current-menu-item > a:before, nav.menubar .inner ul li.current-menu-parent > a:before, nav.menubar .inner ul li.current-menu-ancestor > a:before {
  background: #F3AF1C;
}
nav.menubar .inner ul li.menu-item-has-children > a:after {
  color: #F3AF1C;
}

/* buttons */
.button--primary {
  color: #F3AF1C;
  border-bottom-color: #F3AF1C;
}

.button--secondary, body.login #wp-submit,
body.login input.button-primary {
  background: #F3AF1C;
}
.button--secondary:hover, body.login #wp-submit:hover,
body.login input.button-primary:hover, .button--secondary:focus, body.login #wp-submit:focus,
body.login input.button-primary:focus {
  background: #d1920b;
}

button.gform_button {
  color: #F3AF1C;
  border-bottom-color: #F3AF1C;
}

blockquote p {
  color: #F3AF1C;
}

/* ul */
ul li:before {
  color: #F3AF1C;
}

/* posts slider */
.row.row--posts-slider .swiper-button-next:hover, .row.row--posts-slider .swiper-button-next:focus, .row.row--posts-slider .swiper-button-prev:hover, .row.row--posts-slider .swiper-button-prev:focus {
  background-color: #F3AF1C;
}

.row.row--posts-slider .block__content:after {
  background-color: #F3AF1C;
}

/* latest news slider */
.row.row--latest-news-slider a.media .category:after {
  color: #F3AF1C;
}

/* swiper scrollbar */
.swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #F3AF1C;
}

/* pagination */
.pagination ul li a.current, .pagination ul li span.current {
  background-color: #F3AF1C;
  color: #fff;
}
.pagination ul li a:hover, .pagination ul li span:hover {
  background-color: #F3AF1C;
  color: #fff;
}

/* styled dropdowns */
.selectric-wrapper .selectric-items ul li:hover {
  color: #F3AF1C;
}

/* resource type headers */
.resource-type-header h2 {
  background: #F3AF1C;
}
.resource-type-header a:hover, .resource-type-header a:focus {
  color: #F3AF1C;
}

/* resource filter sidebar */
.widget--filter ul li.active a {
  color: #F3AF1C;
  border-bottom-color: #F3AF1C;
}

/* contact tabs */
.tabbed__nav__link:not(.active):hover {
  color: #F3AF1C;
}

html, body {
  background: #F3AF1C;
}

body.login {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.login form#loginform,
body.login form#lostpasswordform,
body.login form,
body.login #wp-submit,
body.login .message {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 4px;
}
body.login #login {
  margin-bottom: calc(24px * 2);
}
body.login #login h1 a {
  background: transparent url(../images/icons/Logo.svg) 50% 50% no-repeat;
  max-width: 100%;
  background-size: contain;
  pointer-events: none;
  margin-bottom: 40px;
  width: 120px;
  height: 75px;
}
body.login #login form p.forgetmenot {
  display: block;
  float: none;
  width: 100%;
  margin-bottom: calc(24px / 2);
}
body.login #login #backtoblog,
body.login #login #nav {
  text-align: center;
}
body.login #login #backtoblog a,
body.login #login #nav a {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 27px;
  color: #000;
}
body.login #login #backtoblog a:hover, body.login #login #backtoblog a:active,
body.login #login #nav a:hover,
body.login #login #nav a:active {
  color: black;
}
body.login #login #backtoblog {
  display: none;
}
body.login form#lostpasswordform,
body.login form#loginform,
body.login form {
  background-color: #fff;
  color: #000;
  padding-bottom: 15px;
}
body.login form#lostpasswordform label,
body.login form#loginform label,
body.login form label {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  color: #000;
  margin-bottom: 4px;
}
body.login input[type=text],
body.login input[type=checkbox],
body.login input[type=password] {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  color: #000;
}
body.login input[type=text]:focus,
body.login input[type=checkbox]:focus,
body.login input[type=password]:focus {
  outline: none;
  border-color: #F3AF1C;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body.login input[type=checkbox] {
  border: 1px solid #7A8591;
  border-color: #7A8591;
}
body.login input[type=text],
body.login input[type=password] {
  border: 2px solid #7A8591;
  padding: calc(24px / 2);
  font-size: 17px;
  border-radius: 4px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}
body.login #wp-submit,
body.login input.button-primary {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  float: none;
  padding-top: 0;
  margin: 0;
  background: #F3AF1C;
}
body.login #wp-submit:hover, body.login #wp-submit:focus,
body.login input.button-primary:hover,
body.login input.button-primary:focus {
  background: #d1920b;
}
body.login p.submit {
  padding-top: 15px !important;
}
body.login #login_error,
body.login .message {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  background-color: #fff;
  line-height: 27px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}