@charset "UTF-8";
/*------------------------------------------

  APP
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Main stylesheet for central templates

  TODO:
  * Remove unused font awesome icons

------------------------------------------*/
/**
 *  Setup; from current corporate site
 */
/**
 * Testing
 */
/*------------------------------------------

  $VARIABLES
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

------------------------------------------*/
/*------------------------------------------
  Brand Colours
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯*/
/* Course Level Colours */
/* section colours according to designs  */
/* section colours not in designs, so just picked at random by Alec */
/*------------------------------------------
  Typography
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯*/
/*------------------------------------------
  Transitions
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯*/
/*------------------------------------*    $MIXINS
\*------------------------------------*/
/**
 *  Set icon font family
 *
    @include icon-font('visa-icons')
 *
 */
/**
 *  Clearfix
 *
    @include clearfix()
 *  [1] : The space content is one way to avoid an Opera bug when the
 *        contenteditable attribute is included anywhere else in the document.
 *        Otherwise it causes space to appear at the top and bottom of elements
 *        that are clearfixed.
 *  [2] : The use of `table` rather than `block` is only necessary if using
 *        `:before` to contain the top-margins of child elements.
 */
/**
 * Px to Rems
 * as per http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
 *
   @include rem(font-size, 1.6rem);

  !  The mixin relies on a baseline of 16px
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  1. The mixin relies on a function to parse the integer from a value with a unit
  2. We define a list of values for both units
  3. We iterate through each value in the given parameter $values
  4. If the value is either auto or 0, we append it to the list as-is
  5. If the value has a unit, we split it to get both the unit and the raw value
  6. We append according values to the lists depending on the unit of the given value
  7. If the two lists are the same, we ouput only one (like margin-top: 0)
  8. We output the result

  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
 *
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * Bootstrap media query mixins
 *
   @include mobile(){ color: red }
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 *  Reset & Normalise;
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

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

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

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

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

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

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

/*
 * Address differences between Firefox and other browsers.
 */
hr {
  -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: "\201C" "\201D" "\2018" "\2019";
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

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

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

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

/*
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

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

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  -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
\*------------------------------------*/
/**
 * Reset provided by Harry Roberts | @csswizardry
 * 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;
  -webkit-font-smoothing: antialiased;
}

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

/**
 *  Vendor
 */
/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.5.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

.fa {
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

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

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

.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single {
  *zoom: 1;
}

.pika-single:before, .pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both;
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
  *position: absolute;
  *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.pika-select {
  display: inline-block;
  *display: inline;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  margin-bottom: 0;
}

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}

.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.pika-button {
  cursor: pointer;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.is-today .pika-button {
  color: #33aaff;
  font-weight: bold;
}

.is-selected .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  -webkit-box-shadow: inset 0 1px 3px #178fe5;
          box-shadow: inset 0 1px 3px #178fe5;
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: .3;
}

.pika-button:hover {
  background: #ddd;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-inrange .pika-button {
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.3.4 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  .lightbox {
    display: none;
  }
  .featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    /* z-index needs to be >= elements on the site. */
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: transparent;
  }
  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8);
  }
  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }
  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    /* dimensions: handling small or empty content */
    min-width: 30%;
    width: 80%;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal;
  }
  /* contains the content */
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block;
  }
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;
    /* styling */
    cursor: pointer;
    text-align: center;
    background: #fff;
    /* Set the background in case it overlaps the content */
    background: rgba(255, 255, 255, 0.3);
    color: #000;
  }
  .featherlight .featherlight-image {
    /* styling */
    width: 100%;
  }
  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0;
  }
  .featherlight iframe {
    /* styling */
    border: none;
  }
}

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  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;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2 .select2-selection {
  border-radius: 0;
  border-color: #fff;
  height: auto;
  padding: 0.5em;
}

.select2 .select2-selection .select2-selection__rendered {
  line-height: 1;
  padding-left: 0;
  display: block;
}

.select2 .select2-selection .select2-selection__arrow {
  top: 50%;
  right: 5px;
  height: 16px;
  margin-top: -10px;
}

.select2 .select2-selection .select2-selection__arrow:after {
  content: "";
  position: absolute;
}

.select2 .select2-selection .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  content: "";
}

.select2-results__options > li {
  margin: 0;
}

.select2-dropdown {
  border: none;
}

.select2-container--default .select2-selection--multiple {
  padding: 0 3px;
  border: none;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
}

.select2-container--default .select2-search--inline {
  padding: 0.3em;
}

.select2-results {
  border-top: 1px solid #ddd;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: .5em;
  padding-right: 2em;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eee;
  background-size: 100% 19px;
  background-repeat: repeat-x;
  color: #333;
  cursor: default;
  border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice span {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -10px;
  margin-right: 0;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  color: #ccc;
  cursor: default;
  background-color: transparent;
}

/**
 *  Base; unclasses HTML elements
 */
/*------------------------------------------

  $MAIN
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default styles to body and HTML element

------------------------------------------*/
body {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 16px;
  /* 8 */
  font-size: 1rem;
  /* 8 */
  font-family: "Neue Helvetica W01", "Helvetica", "Myriad", sans-serif;
  color: #46545e;
}

/*------------------------------------------

  $HEADINGS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Default heading styles, used to overwrite
  base element styles

------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
}

h4, h5, h6 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 8px;
  /* 8 */
  margin-bottom: 0.5rem;
  /* 8 */
}

.alpha,
.beta,
.gamma,
.delta,
.epsilon,
.zeta {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
  margin-top: 0;
  line-height: 1.2;
  font-weight: 600;
  font-style: normal;
}

.delta,
.epsilon,
.zeta {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 8px;
  /* 8 */
  margin-bottom: 0.5rem;
  /* 8 */
}

h1, .alpha {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 32px;
  /* 8 */
  font-size: 2rem;
  /* 8 */
  line-height: 1.25;
}

@media (min-width: 768px) {
  h1, .alpha {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 32px;
    /* 8 */
    font-size: 2rem;
    /* 8 */
  }
}

h2, .beta {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 24px;
  /* 8 */
  font-size: 1.5rem;
  /* 8 */
  line-height: 1.33333333;
}

@media (min-width: 768px) {
  h2, .beta {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 24px;
    /* 8 */
    font-size: 1.5rem;
    /* 8 */
  }
}

h3, .gamma {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 22px;
  /* 8 */
  font-size: 1.375rem;
  /* 8 */
  line-height: 1.091;
}

@media (min-width: 768px) {
  h3, .gamma {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 22px;
    /* 8 */
    font-size: 1.375rem;
    /* 8 */
  }
}

h4, .delta {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 16px;
  /* 8 */
  font-size: 1rem;
  /* 8 */
  line-height: 1.5;
}

@media (min-width: 768px) {
  h4, .delta {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 16px;
    /* 8 */
    font-size: 1rem;
    /* 8 */
  }
}

.epsilon {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 14px;
  /* 8 */
  font-size: 0.875rem;
  /* 8 */
  line-height: 1.142;
}

@media (min-width: 768px) {
  .epsilon {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 18px;
    /* 8 */
    font-size: 1.125rem;
    /* 8 */
  }
}

.zeta {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 12px;
  /* 8 */
  font-size: 0.75rem;
  /* 8 */
}

@media (min-width: 768px) {
  .zeta {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 16px;
    /* 8 */
    font-size: 1rem;
    /* 8 */
  }
}

/**
 *  Classes for large type; use in heros
 */
.giga {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 48px;
  /* 8 */
  font-size: 3rem;
  /* 8 */
}

@media (min-width: 768px) {
  .giga {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 64px;
    /* 8 */
    font-size: 4rem;
    /* 8 */
    line-height: 1.125;
    margin-left: -3px;
  }
}

.mega {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 34px;
  /* 8 */
  font-size: 2.125rem;
  /* 8 */
}

@media (min-width: 768px) {
  .mega {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 50px;
    /* 8 */
    font-size: 3.125rem;
    /* 8 */
  }
}

.kilo {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 26px;
  /* 8 */
  font-size: 1.625rem;
  /* 8 */
}

@media (min-width: 768px) {
  .kilo {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 34px;
    /* 8 */
    font-size: 2.125rem;
    /* 8 */
  }
}

/*------------------------------------------

  $IMAGES
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default image styles

------------------------------------------*/
/**
 * Fluid images.
 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block;
  margin-bottom: 16px;
}

/*------------------------------------------

  $FORMS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default form styles

------------------------------------------*/
/**
 * Placeholders
 * Define a mixin class to set default placeholder styling
 */
::-webkit-input-placeholder {
  color: #ccc;
}

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

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

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

/**
 * Default form elements
 * Define styling for default form elements

 • Buttons
 • Inputs

 */
/**
 * Button
 * Extend default btn styling
 */
/**
 * Default input styling
 [1] = Span width of container
 [2] = Remove default iOS styling
 */
input,
textarea {
  width: 100%;
  /* [1] */
  -webkit-appearance: none;
  /* [2] */
  border-radius: 0;
  /* [3] */
}

input[type=text],
input[type=url],
input[type=tel],
input[type=date],
input[type=number],
input[type=password],
input[type=color],
input[type=email],
textarea {
  padding: 11px 8px;
  border: none;
}

.form-item input[type=text],
.form-item input[type=url],
.form-item input[type=tel],
.form-item input[type=date],
.form-item input[type=number],
.form-item input[type=password],
.form-item input[type=color],
.form-item input[type=email],
.form-item textarea,
.form-item select,
.form-item .select2, .prca-form input[type=text],
.prca-form input[type=url],
.prca-form input[type=tel],
.prca-form input[type=date],
.prca-form input[type=number],
.prca-form input[type=password],
.prca-form input[type=color],
.prca-form input[type=email],
.prca-form textarea,
.prca-form select,
.prca-form .select2 {
  border: 1px solid #bec3c7;
}

/**
 *  Fieldset
 [1] = Remove default styles from reset
 [2] = Add standard bottom spacing
 */
fieldset {
  border: none;
  /* [1] */
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
  /* [2] */
}

/**
 * Select styling
 * [1] = Remove default iOS styling
 * [2] = Base styling
 *
 */
select,
.input--select {
  -webkit-appearance: none;
  /* [1] */
  border-radius: 0;
  /* [1] */
  border: none;
  /* [1] */
  background: #fff;
  /* [2] */
  width: 100%;
  /* [2] */
  padding: 0.5em;
  /* [2] */
}

/**
 * Checkbox inputs
 * [1] = Remove default iOS styling
 * [2] = Reset width
 *
 */
input[type=checkbox],
.input--checkbox {
  -webkit-appearance: checkbox;
  /* [1] */
  width: auto;
  /* [2] */
}

/**
 * Radio inputs
 * [1] = Remove default iOS styling
 * [2] = Reset width
 *
 */
input[type=radio],
.input--radio {
  -webkit-appearance: radio;
  /* [1] */
  width: auto;
  /* [2] */
}

input[type=radio] + label,
.input--radio + label {
  margin-left: 6px;
}

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 400;
}

.form-group label,
.form-group .label {
  margin: 5px 0 0 0;
}

/**
 * Extra help text in `label`s, e.g.:
 *
   <label>Card number <small class=additional>No spaces</small></label>
 *
 */
.additional {
  display: block;
  font-weight: normal;
}

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0;
}

/*
 * Labels in check-lists
 */
.check-label,
.check-list label,
.check-list .label {
  display: inline-block;
}

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit;
}

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden;
}

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible;
}

.radio-group label + label {
  margin-left: 1em;
}

/*------------------------------------------

  $TYPE
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default type styles

------------------------------------------*/
p, li {
  line-height: 1.5;
}

p, hr {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
}

.intro-panel p {
  font-size: 18px;
}

hr {
  border: none;
  border-bottom: 1px solid;
}

/**
 * Type Styles
 */
.f-helvetica {
  font-family: 'Neue Helvetica W01', 'Helvetica', "Arial", sans-serif;
}

.f-avant {
  font-family: 'ITC Avant Garde Gothic W01', 'Helvetica', "Arial", sans-serif;
}

/**
 *  Small type
 */
small, .small, .milli {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 10px;
  /* 8 */
  font-size: 0.625rem;
  /* 8 */
}

@media (min-width: 768px) {
  small, .small, .milli {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 12px;
    /* 8 */
    font-size: 0.75rem;
    /* 8 */
    line-height: 1.33334;
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    margin-bottom: 8px;
    /* 8 */
    margin-bottom: 0.5rem;
    /* 8 */
  }
}

.micro {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 8px;
  /* 8 */
  font-size: 0.5rem;
  /* 8 */
}

@media (min-width: 768px) {
  .micro {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 10px;
    /* 8 */
    font-size: 0.625rem;
    /* 8 */
  }
}

/*------------------------------------------

  $TABLES
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default table styles

------------------------------------------*/
table {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
  width: 100%;
}

table tr, table tr.even, table tr.odd {
  padding: 0;
  background-color: #ffffff;
  border-bottom: solid 1px #ccc;
}

table th, table td {
  vertical-align: middle;
  line-height: 1.4;
  font-size: 1em;
  padding: .3125em .5em;
}

table th {
  border-bottom: none;
}

table td p:last-child {
  margin-bottom: 0;
}

table caption {
  font-size: 115%;
  line-height: 1.5em;
}

table .fa-clock-o,
table .fa-flag {
  font-size: 1.5em;
  vertical-align: middle;
  margin-right: 0.2em;
}

table a {
  text-decoration: underline;
}

table a:hover {
  text-decoration: none;
}

/*------------------------------------------

  $LISTS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default list styles

------------------------------------------*/
ul,
ol,
dl {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-left: 32px;
  /* 8 */
  margin-left: 2rem;
  /* 8 */
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
}

ul :last-child,
ol :last-child,
dl :last-child {
  margin-bottom: 0;
}

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

.list--inline {
  margin: 0;
  padding: 0;
  margin-bottom: 16px;
}

.list--inline > li {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0;
}

.list--inline.has-seperator li {
  margin-right: 7px;
  padding-right: 8px;
  border-right: solid 1px #606d78;
  margin-bottom: 0;
}

.list--inline.has-seperator li:first-child {
  margin-left: 0;
}

.list--inline.has-seperator li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}

.list--striped > li {
  padding: 0.5em;
}

.list--striped > li:nth-child(even) {
  background: #e9edf0;
}

.list--striped > li > :last-child {
  margin-bottom: 0;
}

.list--unstyled {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 500;
}

dd {
  margin-bottom: 8px;
}

.fee__name, .fee__price {
  display: inline-block;
  width: 50%;
}

/*------------------------------------------

  $LINKS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default link styles

------------------------------------------*/
a {
  color: currentColor;
}

a:hover, a:focus {
  text-decoration: none;
}

/**
 *  Layout; grid and any structural elements
 */
.row {
  margin-left: -16px;
  margin-right: -16px;
}

.row:before, .row:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 16px;
  padding-right: 16px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

.row--tight {
  position: relative;
  margin-left: -2px;
  margin-right: -2px;
}

.row--tight > [class^="col-"],
.row--tight > [class*=" col-"] {
  position: initial;
  padding-left: 2px;
  padding-right: 2px;
}

.row--flush {
  margin-left: 0;
  margin-right: 0;
}

.row--flush > [class^="col-"],
.row--flush > [class*=" col-"] {
  padding-left: 0;
  padding-right: 0;
}

/*------------------------------------------

  $MASONRY
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Classes for masonry sections

------------------------------------------*/
/**
 *  Required to add a default width for the masonry to layout by
 */
.masonry__sizer {
  width: 25%;
}

.masonry__sizer--fellows {
  width: 33.3%;
}

/**
 *  Masonry
 [1] = Zero out font-size to remove gaps caused by whitespace around sections
 [2] = Default masonry item styling
 */
.masonry {
  font-size: 0;
  /* [1] */
  margin: 0 -8px;
}

.view-homepage .masonry,
.view-fapra-homepage .masonry {
  margin: 0;
}

.masonry__item {
  width: 100%;
  /* [2] */
}

.no-js .masonry__item {
  display: inline-block;
  /* [2] */
  vertical-align: top;
  /* [2] */
}

@media (min-width: 768px) {
  .masonry__item.masonry__item--small {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .masonry__item.masonry__item--small {
    width: 25%;
  }
  .masonry__item.masonry__item--large {
    width: 50%;
  }
}

.masonry__item--overlay .box__content--home {
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
  position: absolute;
  width: 100%;
}

@media (min-width: 992px) {
  .masonry__item--overlay .box__content--home {
    width: 50%;
    height: 50%;
  }
}

@media (max-width: 767px) {
  .masonry__item--large h2 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .masonry--3col .masonry__item--small {
    width: 33.33%;
  }
}

.masonry__item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  opacity: 0.8;
  top: 0;
  left: 0;
}

.masonry__item-link > img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
}

.masonry__item-link:hover, .masonry__item-link:focus {
  opacity: 1;
}

/*------------------------------------------

  $CONTAINERS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Classes for containers

------------------------------------------*/
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
  padding-left: 16px;
  padding-right: 16px;
}

.container:before, .container:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.container:after {
  clear: both;
}

@media (min-width: 992px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.slice {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-top: 8px;
  /* 8 */
  padding-top: 0.5rem;
  /* 8 */
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-bottom: 8px;
  /* 8 */
  padding-bottom: 0.5rem;
  /* 8 */
}

/*------------------------------------------

  $SIDEBAR
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Site sidebar

------------------------------------------*/
.sidebar {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 14px;
  /* 8 */
  font-size: 0.875rem;
  /* 8 */
}

.sidebar p, .sidebar li {
  line-height: 1.7142;
}

.sidebar .block {
  clear: both;
}

/*------------------------------------------

  $INPUT-GRID
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Input grids to allow for alignment of grid elements

------------------------------------------*/
.input-grid__item {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.input-grid__item > label {
  margin-left: 10px;
}

.input-grid__item .input--checkbox,
.input-grid__item input[type=checkbox] {
  float: left;
  margin-top: 5px;
}

.input-grid__item > label {
  float: left;
  max-width: 80%;
  max-width: -webkit-calc(100% - 35px);
  max-width: calc(100% - 35px);
}

@media (min-width: 768px) {
  .input-grid__item {
    padding-right: 10px;
  }
}

@media (min-width: 768px) {
  .input-grid--2col,
  .input-grid--3col,
  .input-grid--4col {
    font-size: 0;
  }
  .input-grid--2col .input-grid__item,
  .input-grid--2col .error,
  .input-grid--3col .input-grid__item,
  .input-grid--3col .error,
  .input-grid--4col .input-grid__item,
  .input-grid--4col .error {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 16px;
    /* 8 */
    font-size: 1rem;
    /* 8 */
  }
  .input-grid--2col .input-grid__item {
    width: 50%;
  }
  .input-grid--3col .input-grid__item {
    width: 33.333%;
  }
  .input-grid--4col .input-grid__item {
    width: 25%;
  }
}

/**
 *  Components
 */
/*------------------------------------------

  $ALERT
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default alert styles

------------------------------------------*/
.alert {
  padding: 1rem;
  margin-bottom: 16px;
  border: 1px solid transparent;
  border-radius: 3px;
}

.alert--success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert--info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert--warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert--danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/*------------------------------------------

  $BUTTON
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default button styles

------------------------------------------*/
/*------------------------------------*    $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. Fixes odd inner spacing in IE7.
 * 10. Don’t allow buttons to have underlines; it kinda ruins the illusion.
 * 11. Prevents from inheriting default anchor styles.
 */
.btn, button {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 16px;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: none;
  /* [6] */
  margin: 0;
  /* [6] */
  line-height: 1.5;
  /* [7] */
  padding: 0.5em 1em;
  border-radius: 3px;
  background: transparent;
  /* [8] */
  overflow: visible;
  /* [9] */
  border-radius: 2px;
}

.btn, button,
.btn:hover,
button:hover,
.btn:active,
button:active,
.btn:focus,
button:focus,
.btn:visited,
button:visited {
  text-decoration: none;
  /* [10] */
}

.btn:active, button:active {
  outline: none;
}

.btn::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*------------------------------------*    $SIZES
\*------------------------------------*/
/**
 * Button size modifiers.
 *
 * These all follow the same sizing rules as above; text is 1em, space around it
 * remains uniform.
 */
.btn--small {
  padding: 0.5rem 1rem;
}

.btn--large {
  padding: 1rem 2rem;
}

.btn--huge {
  padding: 2rem 3rem;
}

/**
 * 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;
  height: auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

/*------------------------------------*    $FUNCTIONS
\*------------------------------------*/
/**
 * Button function modifiers.
 */
/*
@MIXIN for button colours
PARAMS: bg colour, text colour

*/
/*  Class applied to body taken from names in map above.
      | e.g. theme-study
  */
.btn--blue {
  color: #fff;
  background: #1f507a;
}

.btn--blue:hover, .btn--blue:active {
  color: #fff;
  background: #1a4366;
}

.btn--blue.is-disabled,
.btn--blue [disabled=disabled], .btn--blue:disabled {
  background: transparent;
  border: 1px solid #1f507a;
  color: #1f507a;
}

.btn--blue.is-disabled:hover, .btn--blue.is-disabled:active,
.btn--blue [disabled=disabled]:hover,
.btn--blue [disabled=disabled]:active, .btn--blue:disabled:hover, .btn--blue:disabled:active {
  cursor: default;
}

/*  Class applied to body taken from names in map above.
      | e.g. theme-study
  */
.btn--lblue {
  color: #fff;
  background: #00c3e1;
}

.btn--lblue:hover, .btn--lblue:active {
  color: #fff;
  background: #00adc8;
}

.btn--lblue.is-disabled,
.btn--lblue [disabled=disabled], .btn--lblue:disabled {
  background: transparent;
  border: 1px solid #00c3e1;
  color: #00c3e1;
}

.btn--lblue.is-disabled:hover, .btn--lblue.is-disabled:active,
.btn--lblue [disabled=disabled]:hover,
.btn--lblue [disabled=disabled]:active, .btn--lblue:disabled:hover, .btn--lblue:disabled:active {
  cursor: default;
}

/*  Class applied to body taken from names in map above.
      | e.g. theme-study
  */
.btn--mint {
  color: #fff;
  background: #03ab8f;
}

.btn--mint:hover, .btn--mint:active {
  color: #fff;
  background: #03927a;
}

.btn--mint.is-disabled,
.btn--mint [disabled=disabled], .btn--mint:disabled {
  background: transparent;
  border: 1px solid #03ab8f;
  color: #03ab8f;
}

.btn--mint.is-disabled:hover, .btn--mint.is-disabled:active,
.btn--mint [disabled=disabled]:hover,
.btn--mint [disabled=disabled]:active, .btn--mint:disabled:hover, .btn--mint:disabled:active {
  cursor: default;
}

/*  Class applied to body taken from names in map above.
      | e.g. theme-study
  */
.btn--dark {
  color: #fff;
  background: #263138;
}

.btn--dark:hover, .btn--dark:active {
  color: #fff;
  background: #1c2429;
}

.btn--dark.is-disabled,
.btn--dark [disabled=disabled], .btn--dark:disabled {
  background: transparent;
  border: 1px solid #263138;
  color: #263138;
}

.btn--dark.is-disabled:hover, .btn--dark.is-disabled:active,
.btn--dark [disabled=disabled]:hover,
.btn--dark [disabled=disabled]:active, .btn--dark:disabled:hover, .btn--dark:disabled:active {
  cursor: default;
}

/*  Class applied to body taken from names in map above.
      | e.g. theme-study
  */
.btn--black {
  color: #fff;
  background: #1b2328;
}

.btn--black:hover, .btn--black:active {
  color: #fff;
  background: #111619;
}

.btn--black.is-disabled,
.btn--black [disabled=disabled], .btn--black:disabled {
  background: transparent;
  border: 1px solid #1b2328;
  color: #1b2328;
}

.btn--black.is-disabled:hover, .btn--black.is-disabled:active,
.btn--black [disabled=disabled]:hover,
.btn--black [disabled=disabled]:active, .btn--black:disabled:hover, .btn--black:disabled:active {
  cursor: default;
}

.btn--clear {
  color: currentColor;
  padding: 0;
}

/**
 * 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: default;
  /* [1] */
  -webkit-box-shadow: none;
          box-shadow: none;
}

.flyout-links {
  margin: 0 0 0 16px;
  /* get rid of white space */
  font-size: 0;
}

@media (min-width: 768px) {
  .flyout-links {
    margin: 0 0 0 16px;
  }
}

.flyout-links li {
  margin-bottom: 0;
}

.btn--fapra {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 13px;
  /* 8 */
  font-size: 0.8125rem;
  /* 8 */
  background-color: #009FE3;
  color: #fff;
  padding: 0 1.7142em;
  border-radius: 3px;
  line-height: 2.858;
  margin-right: 8px;
}

.btn--fapra:hover, .btn--fapra:focus {
  background-color: #008dca;
  color: #fff;
}

.btn--account {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 13px;
  /* 8 */
  font-size: 0.8125rem;
  /* 8 */
  background-color: #1f507a;
  color: #fff;
  padding: 0 1.7142em;
  border-radius: 3px;
  line-height: 2.858;
}

.btn--account:hover, .btn--account:focus {
  background-color: #1a4366;
  color: #fff;
}

/*------------------------------------------

  $BREADCRUMB
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default breadcrumb styles

------------------------------------------*/
.breadcrumb .breadcrumb__item {
  padding-right: 0.1em;
  margin-right: 0;
}

.breadcrumb .breadcrumb__item:not(:first-child):before {
  content: '/';
  padding-right: 0.25em;
}

.breadcrumb .breadcrumb__item.is-current {
  font-weight: 500;
}

.breadcrumb .breadcrumb__item.is-current:before {
  font-weight: normal;
}

/*------------------------------------------

  $FIELDS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styles for form fields

------------------------------------------*/
.field {
  display: block;
  margin-bottom: 16px;
}

.field__label {
  display: block;
}

.field__help-text {
  font-size: 0.8em;
  margin-top: 0.5em;
}

.field--radio .input__container {
  display: block;
  margin-bottom: 16px;
}

/*------------------------------------------
  $INPUT-GROUP
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Input groups to append or prepend form inputs
------------------------------------------*/
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group input:first-of-type {
  display: table-cell;
  position: relative;
  width: 100%;
}

.input-group .input-group__btn {
  display: table-cell;
  font-size: 0;
  width: 1%;
  vertical-align: middle;
  white-space: nowrap;
}

.input-group .input-group__btn .btn, .input-group .input-group__btn button {
  font-size: 16px;
  position: relative;
  line-height: 1.2;
  height: auto;
  padding: 0.5rem 1rem;
  border-radius: 0;
}

.image-upload__preview {
  max-width: 500px;
  width: 100%;
  margin-top: 16px;
  border: 10px solid #fff;
  -webkit-box-shadow: 0px 2px 19px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 19px -4px rgba(0, 0, 0, 0.1);
}

/*------------------------------------------

  $RESPONSIVE-TABLES
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styling for responsive tables

------------------------------------------*/
.table--blue th, .table--blue td {
  padding: 0.5em 1em;
  vertical-align: middle;
}

.table--blue th {
  background-color: #1f507a;
  color: #fff;
}

@media (max-width: 767px) {
  .table--blue th:nth-child(odd) {
    background-color: #1d4b72;
  }
}

.table--mint {
  background-color: #fff;
}

.table--mint th {
  background-color: #03ab8f;
  color: #fff;
}

@media (max-width: 767px) {
  .table--mint th:nth-child(odd) {
    background-color: #03a187;
  }
}

.table--black {
  background-color: #fff;
}

.table--black th {
  background-color: #1b2328;
  color: #fff;
}

@media (max-width: 767px) {
  .table--black th:nth-child(even) {
    background-color: #3a4b56;
  }
}

.table--responsive-block td, .table--responsive-block tr {
  text-align: left;
}

@media (min-width: 768px) {
  .table--responsive-block {
    background: #fff;
  }
  .table--responsive-block tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
}

@media (max-width: 767px) {
  .table--responsive-block {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    position: relative;
  }
  .table--responsive-block th, .table--responsive-block thead {
    display: none;
  }
  .table--responsive-block tr {
    border-bottom: none;
    background: #fff;
    margin-bottom: 16px;
    display: block;
  }
  .table--responsive-block td {
    display: block;
    position: relative;
  }
  .table--responsive-block td:before {
    display: block;
    margin-bottom: 8px;
    content: attr(data-th) ": ";
    font-weight: bold;
  }
  .table--responsive-block td:after {
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    height: 1px;
    background: #ddd;
    width: -webkit-calc(100% - 2em);
    width: calc(100% - 2em);
    left: 1em;
  }
  .table--responsive-block td:last-of-type:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .table--responsive {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative;
  }
  .table--responsive thead {
    border: 0;
    display: block;
    float: left;
    max-width: 50%;
  }
  .table--responsive thead th {
    display: block;
    text-align: right;
  }
  .table--responsive tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  .table--responsive tbody tr {
    display: inline-block;
    vertical-align: top;
    border-bottom: none;
    margin-left: -4px;
    border-left: 1px solid #ccc;
  }
  .table--responsive tbody tr td:nth-child(odd) {
    background-color: #f7f7f7;
  }
  .table--responsive tbody td {
    display: block;
    min-height: 1.25em;
    text-align: left;
  }
}

/*------------------------------------------

  $CHARTS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default chart styles

------------------------------------------*/
.chart {
  position: relative;
  display: inline-block;
}

.chart canvas {
  display: block;
}

.chart__percentage {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 10px;
  /* 8 */
  font-size: 0.625rem;
  /* 8 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------------------

  $SELECTS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styling for custom selects

------------------------------------------*/
/**
 *  Dropdowns
 */
.dropdown {
  position: relative;
  margin-bottom: 16px;
}

.dropdown select {
  -webkit-appearance: menulist-button;
  -moz-appearance: menulist-button;
  appearance: menulist-button;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/**
 *  Pseudo element created by selects.js
 */
.dropdown__value {
  background-color: #fff;
  display: block;
  padding: 11px 3em 11px 0.5em;
  text-overflow: ellipsis;
  text-align: left;
  word-wrap: break-word;
  white-space: nowrap;
}

.dropdown__value:after {
  content: "";
  right: 1em;
  top: 11px;
  position: absolute;
}

.dropdown--theme--dark {
  background-color: #1b2328;
  color: #fff;
}

/*------------------------------------------

  $BOX
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default box styles

------------------------------------------*/
.box {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 16px;
  /* 8 */
  font-size: 1rem;
  /* 8 */
}

.box h3, .box h4, .box p {
  margin-bottom: 8px;
}

.box h3:last-child, .box h4:last-child, .box p:last-child {
  margin: 0;
}

.box .view-header h3 {
  margin-bottom: 16px;
}

.box__content {
  margin: 0 8px 16px 8px;
}

.box__content__inner {
  position: relative;
  border-bottom: 4px solid #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.box__content__inner div[data-mh="masonry-content"] {
  padding: 16px;
  min-height: 80px;
}

/* Page references need confirming/setting up */
.section-about-us .box__content__inner {
  border-color: #ea873f;
}

.section-learning .box__content__inner {
  border-color: #03ab8f;
}

.section-events .box__content__inner {
  border-color: #c1477e;
}

.section-membership .box__content__inner {
  border-color: #96b857;
}

.section-careers .box__content__inner {
  border-color: #1f507a;
}

.section-insights .box__content__inner {
  border-color: #9461a8;
}

.section-campaigns .box__content__inner {
  border-color: #9461a8;
}

.section-news .box__content__inner {
  border-color: #9461a8;
}

.box--home {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 14px;
  /* 8 */
  font-size: 0.875rem;
  /* 8 */
  position: relative;
  width: 100%;
  display: inline-block;
  padding: 0;
}

.box--home h3, .box--home h4, .box--home p {
  margin-bottom: 16px;
}

.box--home p {
  line-height: 1.4;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box--home {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 12px;
    /* 8 */
    font-size: 0.75rem;
    /* 8 */
  }
}

@media (min-width: 768px) {
  .box--home {
    padding-bottom: 100%;
  }
}

.box--home.box--home--video {
  padding-bottom: 50%;
}

@media (min-width: 768px) {
  .box--home.box--home--video {
    padding-bottom: 100%;
  }
}

.box--home.box--home--overlay {
  padding-bottom: 100%;
}

.box--home.bg-white .listing__meta {
  color: #e26856;
}

.box__content--home {
  margin: 0;
}

.box__content__inner--home {
  padding: 16px 16px 80px 16px;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .box__content__inner--home {
    position: absolute;
  }
}

.box__content__inner--home .box__btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
}

.box__content__inner--home .box-hover-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 5px solid #1b2328;
  -webkit-transition: all 0.4s;
          transition: all 0.4s;
}

.box__content__inner--home:hover .box-hover-underline {
  width: 100%;
}

.box__content--flush {
  margin: 0 0 16px 0;
}

.box__btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.box__btn.btn--clear {
  height: auto;
  line-height: 1.5;
  padding: 8px 0;
}

.box__content-media {
  background-color: #ccc;
  height: 0;
  padding-bottom: 75%;
  background-size: cover;
  position: relative;
}

.box__content-media iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.box__content-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  border: solid 4px #e9edf0;
}

.box__content-media--inline {
  padding: 4px;
}

.box__content-media--inline span, .box__content-media--inline img {
  display: block;
}

.box__content-media--inline span {
  height: 180px;
  overflow: hidden;
}

.box__content-media--inline img {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.box__content--flush .box__content-media {
  margin-top: 0;
}

.listing__meta {
  line-height: 1;
  margin-bottom: 16px;
}

.listing__icon {
  display: inline-block;
  vertical-align: middle;
  max-width: 24px;
  max-height: 24px;
  margin-right: 8px;
}

.box__of-the-month .view-header {
  position: relative;
  z-index: 2;
}

.box__of-the-month .view-content {
  position: relative;
  z-index: 1;
}

.box__of-the-month .view-content p:last-child {
  margin-bottom: 16px;
}

.section-about-us .box__of-the-month .title-block {
  background-color: #ea873f;
}

.section-about-us .box__of-the-month .title-block::after {
  border-left-color: #ea873f;
}

.fa-prca {
  background-image: url("/assets/toolkit/images/prca-white.svg");
  background-size: 100%;
  width: 30px;
  height: 30px;
}

.fa-prca-red {
  background-image: url("/assets/toolkit/images/prca-red.svg");
  background-size: 100%;
  width: 30px;
  height: 30px;
}

/*------------------------------------------

  $INPUT-ICONS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styles for input icons

------------------------------------------*/
/**
 * Silent class to extend Font Awesome font properties
*/
.select2 .select2-selection .select2-selection__arrow:after, .dropdown__value:after, [class^="icon--after--"]:after, [class*=" icon--after--"]:after, [class^="icon--before--"]:after, [class*=" icon--before--"]:after, .toggle:after, .nav .arrow-after:after, .carousel .slick-arrow:before, .primary-navigation__toggle:after, .user-menu__item.arrow-after > a:after {
  display: inline-block;
  font: normal normal normal 16px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Set container with relative to allow for icon positioning
*/
.input-container {
  position: relative;
}

/**
 * Input Icons
 [1] = Add padding to account for icon
 [2] = Vertically center icon within input
*/
[class^="icon--after--"], [class*=" icon--after--"] {
  /* [1] */
}

[class^="icon--after--"] input, [class*=" icon--after--"] input {
  padding-right: 3em;
}

[class^="icon--after--"]:after, [class*=" icon--after--"]:after {
  position: absolute;
  /* [2] */
  top: 0.5em;
  /* [2] */
  right: 1em;
  /* [2] */
}

[class^="icon--before--"], [class*=" icon--before--"] {
  /* [1] */
}

[class^="icon--before--"] input, [class*=" icon--before--"] input {
  padding-left: 3em;
}

[class^="icon--before--"]:after, [class*=" icon--before--"]:after {
  position: absolute;
  /* [2] */
  top: 0.5em;
  /* [2] */
  left: 1em;
  /* [2] */
}

/**
 * Icons
*/
.icon--after--calendar:after,
.icon--before--calendar:after {
  content: "";
}

.icon--after--lock:after,
.icon--before--lock:after {
  content: "";
}

.icon--after--clock:after,
.icon--before--clock:after {
  content: "";
}

/*------------------------------------------

  $PAGINATION
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default pagination styles

------------------------------------------*/
.pagination {
  padding: 0;
  margin: 0;
  text-align: center;
}

.pagination > li {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}

.pagination a {
  color: #bec3c7;
}

.pagination a:hover, .pagination a:focus {
  color: #3a4752;
}

.pagination__link {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
}

.is-active .pagination__link {
  border-radius: 100%;
  color: #3a4752;
  border: 1px solid #bec3c7;
}

/*------------------------------------------

  $TOGGLE
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styling for toggles

------------------------------------------*/
.toggle {
  background: #fff;
  display: block;
  position: relative;
  padding: 1em 3em 1em 1em;
}

.toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
}

.toggle.is-active:after {
  content: "";
}

.toggle--dark {
  background: #263138;
  color: #fff;
}

.toggle-wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .toggle--absolute + .is-visible {
    position: absolute !important;
    top: 100%;
    left: 0;
  }
}

/*------------------------------------------

  $FLYOUT
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Hidden sections which 'flyout' when actioned

------------------------------------------*/
/**
 *  Flyout active class, prevent background scrolling when flyout is active
 */
@media (max-width: 767px) {
  .flyout-is-active {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
}

.flyout {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 999999;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  -webkit-transform: translateX(105%);
      -ms-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 400ms ease;
          transition: transform 400ms ease;
  overflow: auto;
  /* this needs refactor, sloppy */
}

@media (min-width: 768px) {
  .flyout {
    width: 400px;
  }
}

.flyout.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 768px) {
  .flyout.is-open {
    -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.3);
            box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.3);
  }
}

.flyout .nav__link {
  padding: 1em;
  text-decoration: none;
}

.flyout .nav--has-dividers .nav__item,
.flyout .nav--has-dividers .user-menu__item,
.flyout .flyout__header + div {
  border-color: #3a4752;
}

.flyout .box {
  padding: 1rem;
}

.flyout__header {
  position: relative;
  padding: 1rem;
  border-bottom: 1px solid #606d78;
}

.flyout__title {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 22px;
  /* 8 */
  font-size: 1.375rem;
  /* 8 */
  line-height: 1.454546;
  margin: 0;
  text-transform: uppercase;
}

.flyout__close {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
  line-height: 11px;
  display: block;
  height: 18px;
  font-weight: 100;
}

.flyout__close:link, .flyout__close:visited, .flyout__close:hover, .flyout__close:active, .flyout__close:focus {
  text-decoration: none;
}

/**
 *  Fapra Flyout
 */
.flyout--fapra {
  background: #46545e;
  color: #fff;
}

.flyout--fapra .flyout__header {
  background-color: #009FE3;
}

.flyout--fapra .nav__link:hover, .flyout--fapra .nav__link:focus {
  background-color: #222a34;
}

/**
 *  Account flyout
 */
.flyout--account {
  background-color: #263138;
  color:   #fff;
}

/**
 *  Search flyout
 */
.flyout--search {
  position: absolute;
  width: 100%;
  bottom: auto;
  height: auto;
  top: auto;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 90;
  border-top: 1px solid #eee;
  background-color: #fff;
}

.flyout--search.is-open {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.flyout--search .search-form {
  margin-bottom: 0;
}

.flyout--search .search-form input {
  outline: none;
}

.flyout--search .search-form .btn, .flyout--search .search-form button {
  padding: 0 1rem;
  height: 42px;
}

/*------------------------------------------

  $NAVIGATION
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styling for navigation components

------------------------------------------*/
.nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .arrow-after {
  position: relative;
  padding-right: 2.5em;
}

.nav .arrow-after:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1em;
  font-size: 0.8em;
}

.nav > li {
  margin-bottom: 0;
}

.nav__item {
  margin-bottom: 0;
}

.nav__link {
  display: block;
  padding: 0.8em 1em;
}

.nav--has-dividers .nav__item {
  border: 1px solid;
  border-width: 1px 0 0 0;
}

.nav--has-dividers .nav__item:first-of-type {
  border-width: 0;
}

.nav--has-dividers.nav--inline .nav__item {
  border-width: 0 0 0 1px;
}

.nav--has-dividers.nav--inline .nav__item:first-of-type {
  border-width: 0;
}

/*------------------------------------------

  $TEASER
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Tease content

------------------------------------------*/
.teaser {
  margin-bottom: 16px;
}

.teaser__image {
  display: block;
  margin-bottom: 16px;
}

.teaser__meta {
  font-size: 0.9em;
}

.teaser__cs-image {
  margin-bottom: 16px;
  border: solid 1px #ccc;
  height: 220px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.flex-embed {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.34%;
  position: relative;
}

.flex-embed iframe,
.flex-embed object,
.flex-embed embed,
.flex-embed video {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

/*------------------------------------------

  $CAROUSEL
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Carousel styles

------------------------------------------*/
.carousel {
  padding-left: 20px;
  padding-right: 20px;
}

.carousel .slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  color: #263138;
}

.carousel .slick-arrow:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
}

.carousel .slick-arrow:before:hover, .carousel .slick-arrow:before:focus {
  opacity: 1;
}

.carousel .slick-prev {
  left: -10px;
}

.carousel .slick-prev:before {
  content: "";
}

.carousel .slick-next {
  right: -10px;
}

.carousel .slick-next:before {
  content: "";
}

/*------------------------------------------

  $TITLE-BLOCKS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Styling for title blocks

------------------------------------------*/
.title-block {
  padding: 8px 16px;
  position: relative;
  background-color: #1b2328;
  color: #fff;
  margin-bottom: 16px;
}

.title-block:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #1b2328;
}

label.error {
  color: red;
  display: block;
  margin: 0.5em 0 0 0;
  font-weight: normal;
}

.js-chosen + .error,
.js-select + .error {
  margin: 0 0 0.5em 0;
}

input[type=text].error,
input[type=url].error,
input[type=tel].error,
input[type=date].error,
input[type=number].error,
input[type=password].error,
input[type=color].error,
input[type=email].error,
textarea.error {
  outline: 1px solid #ebccd1;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
	Inline video block;
*/
.field-name-field-featured-video .field-item {
  text-align: center;
  background: #333;
  padding: 1em 0;
}

.field-name-field-featured-video iframe {
  display: inline-block;
}

.tabs ul.primary {
  padding: 0;
}

.tabs ul.primary li {
  line-height: 1.5;
}

.tabs ul.primary li a {
  background-color: #ddd;
  border-color: #bbb;
  border-radius: 8px 8px 0 0;
  border-style: solid solid none;
  border-width: 1px;
  height: auto;
  margin-right: 0;
  padding: 0.3em 1em 0.1em;
  text-decoration: none;
}

.tabs ul.primary li a.active {
  background-color: #fff;
  border-width: 2px;
  padding-top: 0.4em;
}

body.section-about .tabs ul.primary li a {
  border-color: #e26856;
}

body.section-learning .tabs ul.primary li a {
  border-color: #03ab8f;
}

body.section-events .tabs ul.primary li a {
  border-color: #ea873f;
}

body.section-membership .tabs ul.primary li a {
  border-color: #96b857;
}

body.section-insights .tabs ul.primary li a {
  border-color: #9461a8;
}

body.section-careers .tabs ul.primary li a {
  border-color: #009FE3;
}

body.section-fapra .tabs ul.primary li a {
  border-color: #3a4752;
}

body.section-members .tabs ul.primary li a {
  border-color: #e26856;
}

body.section-search .tabs ul.primary li a {
  border-color: #f4bb2f;
}

/*------------------------------------------

  $PAGINATION
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default pagination styles

------------------------------------------*/
.bean-call-to-action .title-block-bean {
  line-height: 1.3;
  padding: 16px;
}

.bean-call-to-action .content {
  background: #fff;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.bean-call-to-action .cta-block-text {
  padding: 0 16px;
  font-size: 90%;
  margin-bottom: 16px;
}

.bean-call-to-action .block--cta-callout {
  display: block;
  padding: 16px;
  padding-top: 0;
  font-size: 90%;
  margin-bottom: -16px;
}

/**
 *  Modules
 */
/*------------------------------------------

  $PAGE_HEADER
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Page header containing navigation

------------------------------------------*/
.page-header {
  background-color: #fff;
  z-index: 100;
  position: relative;
}

@media (max-width: 767px) {
  .page-header {
    text-align: right;
  }
  .page-header .container {
    padding: 10px 10px 0 10px;
  }
}

@media (min-width: 768px) {
  .page-header {
    padding-top: 24px;
  }
}

.page-header__toggle {
  display: inline-block;
  vertical-align: middle;
}

.flyout-links {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  margin-right: 10px;
}

@media (min-width: 768px) {
  .flyout-links {
    float: right;
    margin: 0 0 0 16px;
  }
}

.flyout-links > li {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

.flyout-links .search-toggle {
  display: none;
}

@media (max-width: 767px) {
  .flyout-links .search-toggle {
    display: block;
    padding: 0 0.5em;
  }
}

@media (min-width: 768px) {
  .js-search-toggle {
    width: 40px;
    text-align: center;
  }
}

/**
 *  SITE LOGO
 */
.site-logo {
  max-width: 150px;
  max-height: 52px;
  float: left;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .site-logo {
    max-width: 150px;
    max-height: 52px;
    margin-top: -6px;
  }
}

/**
 *  SEARCH
 */
.mobile-icons {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 16px;
  /* 8 */
  font-size: 1rem;
  /* 8 */
  padding: 1em;
  display: inline-block;
  float: right;
  color: #000;
}

.js-menu-toggle {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.burger-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  width: 100%;
  display: block;
  background: black;
  -webkit-transition: opacity 0.1s ease;
          transition: opacity 0.1s ease;
}

.burger-icon:before, .burger-icon:after {
  position: absolute;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: black;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .2s ease-in-out;
          transition: .2s ease-in-out;
}

.burger-icon:before {
  top: -8px;
}

.burger-icon:after {
  bottom: -8px;
}

.is-active .burger-icon {
  background: #fff;
}

.is-active .burger-icon:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

.is-active .burger-icon:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.btn--account,
.btn--fapra {
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .btn--account,
  .btn--fapra {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 12px;
    /* 8 */
    font-size: 0.75rem;
    /* 8 */
    padding: 0 0.8em;
    line-height: 35px;
    height: 35px;
  }
}

/*------------------------------------------

  $NAVIGATION
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Styles for navigation

------------------------------------------*/
/**
 *  Primary Navigation

 [1] = Hide navigation items as standard
 [2] = Show navigation items when burger menu is clicked [js/modules/navigation.js]

 */
.primary-navigation {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 14px;
  /* 8 */
  font-size: 0.875rem;
  /* 8 */
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
}

@media (max-width: 767px) {
  .primary-navigation {
    margin: 0 -10px;
    clear: both;
  }
}

@media (min-width: 768px) {
  .primary-navigation {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    font-size: 13px;
    /* 8 */
    font-size: 0.8125rem;
    /* 8 */
    float: right;
  }
}

.primary-navigation > li {
  display: none;
  /* [1] */
}

@media (max-width: 767px) {
  .menu-is-open .primary-navigation > li {
    display: block;
    /* [2] */
  }
}

@media (min-width: 768px) {
  .primary-navigation > li {
    display: inline-block;
    position: relative;
    margin: 0 -4px;
  }
}

/**
 *  Primary Navigation Item
 *  [1] - Remove list styling

 */
.primary-navigation__item {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  /* [1] */
}

@media (max-width: 767px) {
  .primary-navigation__item {
    border-top: 1px solid #d9d9d9;
    position: relative;
    /* To position navigation toggles */
  }
}

@media (min-width: 768px) {
  .primary-navigation__item {
    display: inline-block;
    vertical-align: middle;
    margin-left: -4px;
  }
}

.primary-navigation__item.is-current-item a {
  color: #010101;
}

@media (max-width: 767px) {
  .primary-navigation__item.is-open > .primary-navigation__sub {
    display: block;
  }
}

.primary-navigation__item a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .primary-navigation__item.has-children .primary-navigation__sub {
    position: absolute;
    left: 0;
    top: 100%;
    background: #000;
    z-index: 100;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .primary-navigation__item.has-children .primary-navigation__sub {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  }
}

@media (min-width: 768px) {
  .primary-navigation__item.has-children .primary-navigation__sub li {
    position: relative;
    display: block;
    margin: 0;
  }
}

@media (min-width: 768px) and (min-width: 768px) {
  .primary-navigation__item.has-children .primary-navigation__sub li {
    min-width: 200px;
  }
}

@media (min-width: 768px) {
  .primary-navigation__item.has-children .primary-navigation__sub a {
    display: block;
    line-height: 1.5;
    padding: 0.5rem 1rem;
    border-radius: 0;
    border-top: 1px solid #222;
  }
  .primary-navigation__item.has-children .primary-navigation__sub a.active-trail {
    background: #1c2429;
  }
  .primary-navigation__item.has-children .primary-navigation__sub a.active-trail:hover, .primary-navigation__item.has-children .primary-navigation__sub a.active-trail:focus {
    background: #263138;
  }
  .primary-navigation__item.has-children .primary-navigation__sub a:hover, .primary-navigation__item.has-children .primary-navigation__sub a:focus {
    background: #263138;
  }
  .primary-navigation__item.has-children .primary-navigation__sub .primary-navigation__sub {
    left: 100%;
    top: 0;
    padding: 0;
    margin: 0;
    max-width: 200px;
  }
  .primary-navigation__item.has-children:hover a, .primary-navigation__item.has-children:focus a {
    color: #fff;
    background: #000;
    text-decoration: none;
  }
  .primary-navigation__item.has-children:hover > .primary-navigation__sub, .primary-navigation__item.has-children:focus > .primary-navigation__sub {
    display: block;
    min-height: 40px;
  }
}

.primary-navigation__item a {
  color: #9ca2a6;
  padding: 1em;
  display: block;
}

@media (min-width: 768px) {
  .primary-navigation__item a {
    padding: 2px 8px 24px 8px;
    line-height: 2.8572;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

@media (min-width: 992px) {
  .primary-navigation__item a {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.primary-navigation__item .active-trail {
  color: black;
}

@media only screen and (max-width: 1041px) {
  .primary-navigation__item:nth-child(n+5) .primary-navigation__sub {
    left: auto;
    right: 0;
  }
  .primary-navigation__item:nth-child(n+5) .primary-navigation__sub .primary-navigation__sub {
    left: auto;
    right: 100%;
  }
}

/**
 * Navigation Sub menus
 */
.primary-navigation__sub {
  margin: 0;
  padding: 0;
  display: none;
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 12px;
  /* 8 */
  font-size: 0.75rem;
  /* 8 */
}

.primary-navigation__sub .primary-navigation__item {
  border-top: none;
}

.primary-navigation__sub .primary-navigation__sub {
  margin-left: 10px;
}

@media (min-width: 768px) {
  .primary-navigation__item .primary-navigation__sub .has-children > a {
    padding-right: 2.5em;
    position: relative;
  }
  .primary-navigation__item .primary-navigation__sub .has-children > a:after {
    display: inline-block;
    font: normal normal normal 16px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -0.5em;
  }
}

/**
 * Navigation Toggle
 */
.primary-navigation__toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  line-height: 0;
}

.primary-navigation__toggle:after {
  display: inline-block;
  content: "";
}

.is-open > .primary-navigation__toggle:after {
  content: "";
}

@media (min-width: 768px) {
  .primary-navigation__toggle {
    display: none;
  }
}

/*------------------------------------------

  $HERO
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Sits at top of page and contains two sections

------------------------------------------*/
.hero {
  font-size: 0;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 36px;
}

@media (max-width: 767px) {
  .hero:first-of-type {
    /* 2 */
    /* 2 */
    /* 3 */
    /* 5 */
    /* 5 */
    /* 6 */
    padding-bottom: 16px;
    /* 8 */
    padding-bottom: 1rem;
    /* 8 */
  }
}

.hero__block {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 16px;
  /* 8 */
  font-size: 1rem;
  /* 8 */
  float: none;
  vertical-align: bottom;
  margin-left: 0;
}

@media (min-width: 768px) {
  .hero__block {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  .hero__block {
    min-height: 200px;
  }
}

@media (min-width: 992px) {
  .hero__block .box {
    min-height: 200px;
  }
}

@media (min-width: 768px) {
  .hero__block-title-group {
    display: relative;
    position: relative;
    min-height: 200px;
  }
}

@media (min-width: 768px) {
  .hero__block-title-group-inner {
    position: absolute;
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero__block-title-group-inner {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .has-avatar {
    padding-left: 176px;
  }
}

/* This needs rolling into the flag_image code; */
.avatar {
  border: solid 4px #e9edf0;
  width: 80px;
  height: 60px;
}

@media (max-width: 767px) {
  .avatar {
    margin: 0 auto 16px auto;
  }
}

@media (min-width: 768px) {
  .avatar {
    width: 160px;
    height: 120px;
    float: left;
    margin-left: -176px;
    margin-bottom: 24px;
  }
}

.avatar > img {
  width: 100%;
  height: 100%;
  display: block;
}

.user-menu {
  margin: 0;
  list-style: none;
}

.user-menu__item {
  position: relative;
  background: #1b2328;
  color: #fff;
  border-top: 1px solid #ccc;
  margin-bottom: 0;
}

.user-menu__item a {
  display: block;
  padding: 1em;
  padding-right: 3em;
}

.user-menu__item.arrow-after > a {
  position: relative;
}

.user-menu__item.arrow-after > a:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1.4em;
  font-size: 0.8em;
}

.user-menu__item.is-open {
  background: #3a4752;
}

.user-menu__item.is-open > .user-sub-menu {
  height: auto;
}

.user-menu__item.is-open .user-menu__item {
  background: #606d78;
}

.user-menu__item.is-open.arrow-after > a:after {
  content: "";
}

.user-sub-menu {
  font-size: 0.9em;
  height: 0;
  overflow: hidden;
  margin: 0;
  list-style: none;
}

.user-sub-menu a {
  padding-left: 3em;
}

.user-menu__flag {
  position: absolute;
  display: block;
  right: 1em;
  top: 1em;
}

.notification {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  font-size: 12px;
  /* 8 */
  font-size: 0.75rem;
  /* 8 */
  display: block;
  padding: 4px;
  border-radius: 2px;
  min-width: 2em;
  text-align: center;
}

.notification--red {
  background-color: #e30613;
  color: white;
}

/*------------------------------------------

  $FOOTER
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Site footer

------------------------------------------*/
.page-footer {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  /* 3 */
  /* 4 */
  padding: 32px 0;
  /* 8 */
  padding: 2rem 0;
  /* 8 */
  background-color: #333;
  text-align: center;
  color: #cccccc;
}

.page-footer :last-child {
  margin-bottom: 0;
}

.social-list__item {
  margin: 0 5px;
  font-size: 1.5rem;
}

/*------------------------------------------

  $WORK-FEATURE
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Default pagination styles

------------------------------------------*/
.js-feature-toggle {
  display: block;
  position: relative;
}

.js-feature-toggle.is-active:after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #e9edf0;
  margin-left: -20px;
}

.work-feature {
  position: relative;
  background-color: #e9edf0;
  margin-left: -15px;
  margin-right: -15px;
  height: 0;
  overflow: hidden;
}

.work-feature.is-active {
  height: auto;
  padding: 30px 15px;
  overflow: visible;
}

@media (min-width: 768px) {
  .work-feature {
    left: 0;
    width: -webkit-calc(300% + 8px);
    width: calc(300% + 8px);
    margin-left: 0;
    margin-right: 0;
    z-index: 10;
  }
  .work-feature:before {
    content: '';
    display: block;
    width: 100%;
    left: -100%;
    height: 100%;
    background-color: #e9edf0;
    position: absolute;
    top: 0;
  }
  .work-feature:after {
    content: '';
    display: block;
    width: 100%;
    right: -100%;
    height: 100%;
    background-color: #e9edf0;
    position: absolute;
    top: 0;
  }
}

.work-feature .carousel {
  margin-top: 32px;
}

@media (min-width: 992px) {
  .work-feature .carousel {
    margin-top: auto;
  }
}

.work-feature__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 30px;
  line-height: 20px;
  height: 25px;
  display: block;
  text-decoration: none;
}

.work-feature__close:hover, .work-feature__close:focus {
  text-decoration: none;
}

@media (min-width: 768px) {
  .work-feature__close {
    top: 5px;
    right: 10px;
  }
}

@media (min-width: 768px) {
  .row--tight > [class^="col-"]:nth-of-type(2) .work-feature,
  .row--tight > [class*=" col-"]:nth-of-type(2) .work-feature {
    left: -100%;
    margin-left: -4px;
  }
  .row--tight > [class^="col-"]:nth-of-type(3) .work-feature,
  .row--tight > [class*=" col-"]:nth-of-type(3) .work-feature {
    left: -200%;
    margin-left: -8px;
  }
}

.prca-membership {
  /**
	 * What
	 */
  /**
	 * Comments
	 */
}

.prca-membership a {
  font-weight: bold;
  text-decoration: underline;
}

.prca-membership .membership-questions-container {
  position: relative;
  margin-bottom: 40px;
}

.prca-membership .membership-questions-container .membership-questions.q-two {
  display: none;
}

.prca-membership .membership-questions-container .membership-questions {
  background-color: #46545e;
  color: #fff;
}

.prca-membership .membership-questions-container .membership-questions .check-member-email.btn, .prca-membership .membership-questions-container .membership-questions button.check-member-email {
  text-align: center;
}

.prca-membership .membership-questions-container .membership-questions button {
  background-color: #1b2328;
  color: #fff;
  width: 100%;
}

.prca-membership .membership-questions-container .membership-questions .membership-app-answer {
  padding: 0;
}

.prca-membership .membership-questions-container .membership-questions .membership-app-answer span {
  float: left;
  padding: 8px 0.75rem;
}

.prca-membership .membership-questions-container .membership-questions .membership-app-answer .item-count {
  background-color: #606d78;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-weight: bold;
  width: 40px;
}

.prca-membership .membership-questions-container .membership-questions .membership-question-count span {
  font-size: 2rem;
}

.prca-membership .membership-questions-container .membership-questions:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #46545e;
}

.prca-membership .membership-type .leader-paragraph {
  font-size: 1.2rem;
}

.prca-membership .membership-type #benefits ul {
  list-style-type: none;
  margin: 0 0 0.5rem 20px;
}

.prca-membership .membership-type #benefits ul > li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  margin: 0 5px 0 -20px;
  color: #000;
}

.prca-membership .membership-type #benefits ul > ul {
  list-style: initial;
  margin: initial;
  padding: 0 0 0 18px;
  margin-bottom: 0.5rem;
}

.prca-membership .membership-type #benefits ul > ul > li:before {
  content: none;
}

.prca-membership .membership-cost .organisation-member-check {
  background-color: #46545e;
  color: #fff;
  position: relative;
}

.prca-membership .membership-cost .organisation-member-check:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #46545e;
}

.prca-membership .membership-cost .cost-container .cost {
  font-size: 2.8rem;
}

.prca-membership .membership-cost .cost-container .cost span {
  margin-left: 4px;
  font-size: 1rem;
}

.prca-membership .membership-cost button {
  background-color: #96b857;
  color: #fff;
}

.prca-membership .membership-cost .membership-prices {
  margin-bottom: 22px;
}

.prca-membership .membership-masonry {
  margin: 3rem 0 1rem 0;
}

.prca-membership .membership-type-info {
  clear: both;
}

ul.faq-ul-questions-top {
  margin-bottom: 16px;
}

ul.faq-ul-questions-top li {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.faq-ul-questions-top a {
  text-decoration: underline;
}

ul.faq-ul-questions-top a:hover {
  text-decoration: none;
}

.faq-answer {
  margin: 0 0 16px 0;
  padding: 0;
}

.faq-answer ul {
  margin: 0;
}

.faq-answer ul li {
  padding: 0;
}

.faq-question {
  display: none;
}

.shopping-trolley-img {
  position: absolute;
  top: 25px;
  left: 35px;
}

#course_prices {
  margin-left: 70px;
}

.btn.btn-tickets, button.btn-tickets {
  font-size: 0.875rem;
  background-color: #263138;
  color: #fff;
  padding: 0 1.7142em;
  border-radius: 3px;
  line-height: 2.858;
  margin-right: 8px;
  width: 100%;
}

/**
 *  Objects
 */
/*------------------------------------------

  $FLAG
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  The flag object is a design pattern similar to the media object, however it
  utilises `display: table[-cell];` to give us control over the vertical
  alignments of the text and image. csswizardry.com/2013/05/the-flag-object

  <div class="flag">
    <div class="flag__image">
        <img ... />
    </div>
    <div class="flag__body">
        <p>...</p>
    </div>
  </div>

------------------------------------------*/
.flag {
  display: table;
  width: 100%;
}

.flag__image,
.flag__body {
  display: table-cell;
  vertical-align: middle;
}

.flag--top .flag__image, .flag--top
.flag__body {
  vertical-align: top;
}

.flag--bottom .flag__image, .flag--bottom
.flag__body {
  vertical-align: bottom;
}

.flag__image {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-right: 16px;
  /* 8 */
  padding-right: 1rem;
  /* 8 */
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-bottom: 16px;
  /* 8 */
  padding-bottom: 1rem;
  /* 8 */
}

.flag__image > img {
  display: block;
  max-width: none;
  border: solid 4px #e9edf0;
}

.flag--rev .flag__image {
  padding-right: 0;
  padding-left: 10px;
}

.flag__body {
  width: 100%;
}

/**
 *  Utility classes, helpers and style trumps
 */
/*------------------------------------------

  $VISIBILITY
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes for visibility

------------------------------------------*/
/**
 *  Elements for Screen Readers only
 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 *  Media query based hiding
 */
.visually-hidden {
  visibility: hidden;
}

/* Hidden classes */
@media (max-width: 767px) {
  .hidden--mobile {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .hidden--mobile.is-visible {
    position: inherit;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
  }
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden.is-visible {
  position: inherit;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden--tablet {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .hidden--tablet.is-visible {
    position: inherit;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
  }
}

@media (min-width: 768px) {
  .hidden--tablet--up {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .hidden--tablet--up.is-visible {
    position: inherit;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden--desktop {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .hidden--desktop.is-visible {
    position: inherit;
    width: auto;
    height: auto;
  }
}

@media (min-width: 992px) {
  .hidden--desktop--up {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .hidden--desktop--up.is-visible {
    position: inherit;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
  }
}

@media (min-width: 1200px) {
  .hidden--wide {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .hidden--wide.is-visible {
    position: inherit;
    width: auto;
    height: auto;
  }
}

/* Show classes */
.visible--mobile {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 767px) {
  .visible--mobile {
    position: inherit;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
  }
}

.overflow-hidden {
  overflow: hidden;
}

/*------------------------------------------

  $COLOURS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes to change colours

------------------------------------------*/
.colour-white {
  color: #fff;
}

.colour-dark {
  color: #263138;
}

.colour-black {
  color: #1b2328;
}

.colour-red {
  color: #e26856;
}

.colour-mint {
  color: #03ab8f;
}

.colour-blue {
  color: #1f507a;
}

.colour-blue-light {
  color: #009FE3;
}

.colour-green {
  color: #96b857;
}

.colour-grey {
  color: #bec3c7;
}

.colour-grey-light {
  color: #e9edf0;
}

.color-grey-mid {
  color: #606d78;
}

.colour-dark-grey {
  color: #3a4752;
}

.colour-pink {
  color: #c1477e;
}

.colour-purple {
  color: #9461a8;
}

.colour-orange {
  color: #ea873f;
}

.colour-blue-grey {
  color: #31404b;
}

.bg-white {
  background-color: #fff;
}

.bg-dark {
  background-color: #263138;
}

.bg-black {
  background-color: #1b2328;
}

.bg-red {
  background-color: #e26856;
}

.bg-mint {
  background-color: #03ab8f;
}

.bg-blue {
  background-color: #1f507a;
}

.bg-blue-light {
  background-color: #009FE3;
}

.bg-green {
  background-color: #96b857;
}

.bg-grey {
  background-color: #bec3c7;
}

.bg-grey-light {
  background-color: #e9edf0;
}

.bg-grey-mid {
  background-color: #606d78;
}

.bg-grey-dark {
  background-color: #3a4752;
}

.bg-pink {
  background-color: #c1477e;
}

.bg-purple {
  background-color: #9461a8;
}

.bg-orange {
  background-color: #ea873f;
}

.bg-blue-grey {
  background-color: #31404b;
}

.border-colour-white {
  border-color: #fff;
}

.border-colour-dark {
  border-color: #263138;
}

.border-colour-black {
  border-color: #1b2328;
}

.border-colour-red {
  border-color: #e26856;
}

.border-colour-mint {
  border-color: #03ab8f;
}

.border-colour-blue {
  border-color: #1f507a;
}

.border-colour-blue-light {
  border-color: #009FE3;
}

.border-colour-green {
  border-color: #96b857;
}

.border-colour-grey {
  border-color: #bec3c7;
}

.border-colour-grey-light {
  border-color: #e9edf0;
}

.border-color-grey-mid {
  border-color: #606d78;
}

.border-colour-dark-grey {
  border-color: #3a4752;
}

.border-colour-pink {
  border-color: #c1477e;
}

.border-colour-purple {
  border-color: #9461a8;
}

.border-colour-orange {
  border-color: #ea873f;
}

.border-colour-blue-grey {
  border-color: #31404b;
}

.bg-image {
  background-size: cover;
  background-position: 50%;
}

.bg-twitter {
  background-color: #00aced;
}

.bg-twitter a {
  color: #000;
}

.bg-linkedin {
  background-color: #0079b3;
}

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

/*------------------------------------------

  $WEIGHTS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes to change font weights

------------------------------------------*/
/**
 *  Helvetica Neue : Fonts.com

 Light   = 300
 Regular = 400
 Medium  = 500
 Bold    = 600

 */
.weight-light {
  font-weight: 300;
}

.weight-regular {
  font-weight: 400;
}

.weight-medium {
  font-weight: 500;
}

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

/*------------------------------------------

  $MARGINS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes for margins

------------------------------------------*/
.flush {
  margin: 0;
}

.b-flush, u-b-flush {
  margin-bottom: 0;
}

.margin-bottom, u-mb {
  margin-bottom: 16px;
}

.mb-flush, u-mb-flush {
  margin-bottom: 0;
}

.margin-neg-16 {
  margin: -16px;
}

.margin-top {
  margin-top: 16px;
}

.u-mt2 {
  margin-top: 32px;
}

.u-p {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding: 16px;
  /* 8 */
  padding: 1rem;
  /* 8 */
}

.u-p--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding: 32px;
  /* 8 */
  padding: 2rem;
  /* 8 */
}

.u-p--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding: 48px;
  /* 8 */
  padding: 3rem;
  /* 8 */
}

.u-pt {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-top: 16px;
  /* 8 */
  padding-top: 1rem;
  /* 8 */
}

.u-pt--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-top: 32px;
  /* 8 */
  padding-top: 2rem;
  /* 8 */
}

.u-pt--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-top: 48px;
  /* 8 */
  padding-top: 3rem;
  /* 8 */
}

.u-pr {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-right: 16px;
  /* 8 */
  padding-right: 1rem;
  /* 8 */
}

.u-pr--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-right: 32px;
  /* 8 */
  padding-right: 2rem;
  /* 8 */
}

.u-pr--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-right: 48px;
  /* 8 */
  padding-right: 3rem;
  /* 8 */
}

.u-pb {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-bottom: 16px;
  /* 8 */
  padding-bottom: 1rem;
  /* 8 */
}

.u-pb--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-bottom: 32px;
  /* 8 */
  padding-bottom: 2rem;
  /* 8 */
}

.u-pb--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-bottom: 48px;
  /* 8 */
  padding-bottom: 3rem;
  /* 8 */
}

.u-pl {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-left: 16px;
  /* 8 */
  padding-left: 1rem;
  /* 8 */
}

.u-pl--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-left: 32px;
  /* 8 */
  padding-left: 2rem;
  /* 8 */
}

.u-pl--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  padding-left: 48px;
  /* 8 */
  padding-left: 3rem;
  /* 8 */
}

.pb-flush {
  padding-bottom: 0;
}

.u-m {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin: 16px;
  /* 8 */
  margin: 1rem;
  /* 8 */
}

.u-m--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin: 32px;
  /* 8 */
  margin: 2rem;
  /* 8 */
}

.u-m--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin: 48px;
  /* 8 */
  margin: 3rem;
  /* 8 */
}

.u-mt {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-top: 16px;
  /* 8 */
  margin-top: 1rem;
  /* 8 */
}

.u-mt--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-top: 32px;
  /* 8 */
  margin-top: 2rem;
  /* 8 */
}

.u-mt--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-top: 48px;
  /* 8 */
  margin-top: 3rem;
  /* 8 */
}

.u-mr {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-right: 16px;
  /* 8 */
  margin-right: 1rem;
  /* 8 */
}

.u-mr--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-right: 32px;
  /* 8 */
  margin-right: 2rem;
  /* 8 */
}

.u-mr--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-right: 48px;
  /* 8 */
  margin-right: 3rem;
  /* 8 */
}

.u-mb {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
}

.u-mb--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 32px;
  /* 8 */
  margin-bottom: 2rem;
  /* 8 */
}

.u-mb--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 48px;
  /* 8 */
  margin-bottom: 3rem;
  /* 8 */
}

.u-ml {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-left: 16px;
  /* 8 */
  margin-left: 1rem;
  /* 8 */
}

.u-ml--2 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-left: 32px;
  /* 8 */
  margin-left: 2rem;
  /* 8 */
}

.u-ml--3 {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-left: 48px;
  /* 8 */
  margin-left: 3rem;
  /* 8 */
}

/*------------------------------------------

  $WIDTHS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes to change widths

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

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

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

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

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

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

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

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

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

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

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

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

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

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

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

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

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

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

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

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

.push-two-thirds, .push-four-sixths, .push-eight-twelfths {
  margin-left: 66.666%;
}

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

.push-three-quarters, .push-six-eighths, .push-nine-twelfths {
  margin-left: 75%;
}

/**
    * Fifths
    */
.push-one-fifth, .push-two-tenths {
  margin-left: 20%;
}

.push-two-fifths, .push-four-tenths {
  margin-left: 40%;
}

.push-three-fifths, .push-six-tenths {
  margin-left: 60%;
}

.push-four-fifths, .push-eight-tenths {
  margin-left: 80%;
}

/**
    * Sixths
    */
.push-one-sixth, .push-two-twelfths {
  margin-left: 16.666%;
}

.push-five-sixths, .push-ten-twelfths {
  margin-left: 83.333%;
}

/**
    * Eighths
    */
.push-one-eighth {
  margin-left: 12.5%;
}

.push-three-eighths {
  margin-left: 37.5%;
}

.push-five-eighths {
  margin-left: 62.5%;
}

.push-seven-eighths {
  margin-left: 87.5%;
}

/**
    * Tenths
    */
.push-one-tenth {
  margin-left: 10%;
}

.push-three-tenths {
  margin-left: 30%;
}

.push-seven-tenths {
  margin-left: 70%;
}

.push-nine-tenths {
  margin-left: 90%;
}

/**
    * Twelfths
    */
.push-one-twelfth {
  margin-left: 8.333%;
}

.push-five-twelfths {
  margin-left: 41.666%;
}

.push-seven-twelfths {
  margin-left: 58.333%;
}

.push-eleven-twelfths {
  margin-left: 91.666%;
}

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

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

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

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

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

/*------------------------------------------

  $LINKS
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes to style links

------------------------------------------*/
.link-unstyled {
  text-decoration: none;
  color: currentColor;
}

.link--red {
  color: #e26856;
  text-decoration: none;
}

.link--red:hover, .link--red:active {
  color: #de5540;
  text-decoration: underline;
}

/*------------------------------------------

  $ALIGN
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯

  Helper classes for alignment

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

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

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.nowrap {
  white-space: nowrap;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

/*------------------------------------------

  $BORDER
  ¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
  Utility classes for borders

------------------------------------------*/
.border-bottom {
  border-bottom: 1px solid;
}

.border-top {
  border-top: 1px solid;
}

.border-left {
  border-left: 1px solid;
}

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

/**
 *  Shame; Anything in here needs refactoring
 */
e li.expanded, li.collapsed, li.leaf {
  padding: 0;
}

#secondary-menu {
  margin: 0 0 16px 0;
  display: block;
}

#secondary-menu li {
  padding: 0;
}

h2 + #secondary-menu {
  margin-top: -8px;
}

#logo {
  float: left;
  margin-top: -2px;
  display: inline-block;
}

.sidebar-search #search-form input {
  margin-bottom: 16px;
}

.sidebar-search #search-form label {
  line-height: 1.5;
}

.fa-long-arrow-right {
  position: relative;
  top: 1px;
  margin-left: 2px;
}

small .fa-long-arrow-right {
  top: 1px;
}

.slice .crm-container .crm-submit-buttons, .slice .crm-container .action-link {
  height: auto;
}

/* required because of CiviCRM's heavy specifity */
.btn--blue {
  color: #fff !important;
}

/* Inelegant solution to reduce (the ridiculous) line length */
/* even less elegant solution to reduce excessive white space */
.organisation-profile p, .individual-profile p {
  padding-right: 20px;
}

.organisation-profile dt, .individual-profile dt {
  line-height: 1.5em;
  font-weight: bold;
}

.organisation-profile dd, .individual-profile dd {
  padding-left: 15px;
  padding-right: 5px;
  line-height: 1.5em;
}

.view-member-profile .hero__block-title-group {
  min-height: 0;
}

.view-member-profile .hero__block-title-group-inner {
  bottom: auto;
  padding-left: 200px;
}

.view-member-profile .avatar {
  margin-left: -188px;
}

@media (min-width: 768px) {
  .box .box__content p {
    padding-right: 0;
  }
}

/*
	reduce main column width;
*/
/*
	center content images;
*/
#content > .section p img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/*
	Improve readablity on header forms
*/
.hero__block .views-exposed-form label {
  color: White;
}

.views-exposed-widgets input[type=text], input[type=url],
input[type=tel], input[type=date], input[type=number],
input[type=password], input[type=color], input[type=email], textarea {
  padding: 0.5em;
}

/*
	Reduce width of main column;
*/
#content > .section {
  margin: 0 32px;
}

/**
	Unable to find the markup for the checkout and cart button
*/
.slice a[href$="cart"],
.slice a[href$="checkout"] {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  border: none;
  margin: 0;
  line-height: 1.5;
  padding: 0.5em 1em;
  border-radius: 3px;
  background: transparent;
  overflow: visible;
  border-radius: 2px;
  background: #46afdf;
  color: #fff;
  text-decoration: none;
}

.slice a[href$="cart"]:hover,
.slice a[href$="checkout"]:hover,
.slice a[href$="cart"]:active,
.slice a[href$="checkout"]:active,
.slice a[href$="cart"]:focus,
.slice a[href$="checkout"]:focus,
.slice a[href$="cart"]:visited,
.slice a[href$="checkout"]:visited {
  text-decoration: none;
  color: #fff;
}

.slice a[href$="cart"]:active,
.slice a[href$="checkout"]:active {
  outline: none;
}

.slice a[href$="cart"]::-moz-focus-inner,
.slice a[href$="checkout"]::-moz-focus-innerr {
  border: 0;
  padding: 0;
}

/**
	Tiday shopping cart block;
*/
.cart-contents ul.links.inline, .cart-contents ul.inline li {
  display: inline-block;
}

.cart-contents ul.links.inline {
  margin-left: 0;
  margin-top: 1em;
}

.line-item-summary {
  margin-right: .5em;
}

/**
	Wrap links in cards/boxes
*/
.box a {
  word-wrap: break-word;
}

/**
	Style MENA title block https://staging.prca.org.uk/membership/prca-mena
*/
#block-views-mena-test-block .title-block {
  padding: 0;
  position: relative;
  background: none;
  color: #46545e;
}

#block-views-mena-test-block .title-block:after {
  content: none;
}

.filter-guidelines {
  display: none;
}

.filter-wrapper {
  display: none;
}

/**
 * General views styles
 */
.view .attachment {
  margin-bottom: 1rem;
}

/**
 * Glossary specific styles
 */
.section-about-us th {
  background-color: #ea873f;
}

/**
 * My profile views css
 */
.view-my-upcoming-events th {
  background-color: #ea873f;
}

.view-my-events th {
  background-color: #ea873f;
}

.view-my-groups th {
  background-color: #96b857;
}

.view-my-membership th {
  background-color: #96b857;
}

.view-my-orders th {
  background-color: #ea873f;
}

.view-prca-licensed-files th {
  background-color: #e26856;
}

/**
 * Applying custom list item bullets
 */
#block-block-1 ul {
  padding-left: 0;
  list-style-type: none;
  margin-left: 0;
}

#block-block-1 li {
  margin-left: 24px;
}

#block-block-1 li:before {
  font-family: 'FontAwesome';
  content: '\f00c';
  margin: 0 5px 0 -19px;
  color: #000;
}

/**
 * CiviCRM specific styles
 */
/**
 * Stryling CiviCRM contribution forms
 */
.crm-container .crm-contribution-main-form-block .crm-section .label {
  text-align: left;
  border: none;
}

#crm-container.crm-public.crm-container fieldset {
  border: none;
}

#crm-container.crm-public input[type="text"],
#crm-container.crm-public input[type="password"],
#crm-container.crm-public input[type="email"],
#crm-container.crm-public select {
  width: 90%;
  border: 1px solid #bec3c7;
  background-image: none;
  border-radius: 0;
  padding: 0.5rem;
  vertical-align: middle;
  -webkit-box-sizing: initial;
          box-sizing: initial;
  /* testing */
}

#crm-container.crm-public #crm-submit-buttons {
  margin: 30px 0 0 0;
}

#crm-container.crm-public #crm-submit-buttons .crm-button {
  border-radius: 0;
  background: #017bb8;
  background-image: none;
  width: auto;
  border: none;
  padding: 1em;
}

#crm-container.crm-public #crm-submit-buttons .crm-button input {
  padding: 0;
}

#crm-container.crm-public #crm-submit-buttons .crm-button span {
  display: none;
}

#crm-container.crm-public #crm-submit-buttons .crm-button .crm-form-submit {
  text-shadow: none;
  padding-left: none;
}

/**
 * Overwriting some drupal styles to fit with our theme
 */
/**
 * Breadcrumbs
 */
#breadcrumb {
  margin-bottom: 8px;
  padding: 12px 0;
}

#breadcrumb a {
  display: inline-block;
  line-height: 1.5;
}

/**
 * Forms work
 */
/**
 * Updating all submit buttons
 */
input[type='submit'] {
  border-radius: 0;
  background: #1f507a;
  background-image: none;
  width: auto;
  border: none;
  padding: 0.5em 1em;
  margin-right: 0.5em;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

/*
 * Remove system form item margins from webforms
 */
.node-webform .submitted {
  margin-bottom: 25px;
}

.webform-client-form .form-item {
  margin: 0;
}

.webform-client-form .webform-component {
  margin-bottom: 16px;
}

/**
 * Ensure labels on forms aren't bold
 */
.field__label {
  font-weight: normal;
}

.js-field-label {
  font-weight: normal;
  display: inline;
  margin: 0;
}

/**
 * Remove margins ingerited from system css
 */
.row .form-group {
  margin: 0 0 16px 0;
}

.prca-form .form-item {
  margin: 0 0 16px 0;
}

.form-checkboxes .form-item, .form-radios .form-item {
  margin: 0;
}

.webform-client-form input[type="submit"] {
  width: auto;
}

.webform-client-form .radio-horizontal {
  float: left;
  margin-right: 4px;
}

.webform-client-form .radio-horizontal label {
  margin: 0;
}

/**
 * Radio buttons
 */
.radio-horizontal {
  float: left;
  margin-right: 4px;
}

.radio-horizontal label {
  margin: 0;
}

/**
 * Primary Tabs
 */
.tabs.primary {
  margin-bottom: 20px;
}

/**
 * Search form work
 */
.search-form.navbar-form label {
  display: inline-block;
}

.sidebar-search .search-form input {
  margin-top: 0;
  margin-bottom: 6px;
}

/**
 * Masonry Homepage Overides
 */
.masonry .pane-title {
  display: none;
}

/**
 * Twitter tweak
 */
.bg-twitter em {
  font-style: normal;
}

/**
 * Hiding Admin tabs on mobile
 */
/* @media (min-width: $screen-lg-min) {
  .tabs.primary {
  	display: none;
  }
} */
/**
 * Hide default login links
 */
#block-user-login .item-list {
  display: none;
}

#block-user-login h2 {
  display: none;
}

/**
 * Events work
 */
#event-map {
  height: 100%;
  width: 100%;
  border: solid 4px #e9edf0;
}

.event-details ul {
  margin-bottom: 1em;
}

.membership-type-info {
  display: none;
}

.view-fapra-agencies img {
  width: 75px;
}

.views-exposed-form {
  color: #1b2328;
}

.views-exposed-form label {
  color: #fff;
}

.views-exposed-form .views-exposed-widget .form-submit {
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-top: 32px;
  /* 8 */
  margin-top: 2rem;
  /* 8 */
}

.views-exposed-form label {
  color: #46545e;
}

table .views-field-image-URL img {
  width: 72px;
}

.view-content table .views-field-commerce-price,
.view-content table .views-field-field-member-price {
  text-align: center;
}

.view-content table td.active {
  background: none;
}

/*
 * Center monetary table columns
 */
.view-events th:nth-child(4),
.view-events th:nth-child(5),
.view-events th:nth-child(6),
.view-events td:nth-child(4),
.view-events td:nth-child(5),
.view-events td:nth-child(6) {
  text-align: center;
}

@media (max-width: 991px) {
  .view-events td:nth-child(4),
  .view-events td:nth-child(5),
  .view-events td:nth-child(6) {
    text-align: left;
  }
  .view-events th:nth-child(4),
  .view-events th:nth-child(5),
  .view-events th:nth-child(6) {
    text-align: right;
  }
}

.commerce-line-item-views-form th, .commerce-line-item-views-form td {
  text-align: center;
}

.commerce-line-item-views-form th:nth-child(1),
.commerce-line-item-views-form td:nth-child(1) {
  text-align: left;
}

.commerce-line-item-views-form th:nth-child(5),
.commerce-line-item-views-form td:nth-child(5) {
  text-align: right;
}

.view-training-courses th, .view-training-courses td {
  text-align: center;
}

.view-training-courses th:nth-child(2),
.view-training-courses td:nth-child(2),
.view-training-courses th:nth-child(3),
.view-training-courses td:nth-child(3) {
  text-align: left;
}

.view-training-courses th:nth-child(3),
.view-training-courses td:nth-child(3) {
  width: 14%;
}

.view-training-courses th:nth-child(4) span,
.view-training-courses td:nth-child(4) span {
  font-size: 12px;
  padding: .25em;
}

/**
 * Training courses table amends
 */
.view-training-courses table td.views-field-level-68 {
  text-align: center;
}

.view-training-courses table th.views-field-level-68 {
  text-align: center;
}

/* Layout for forms in hero block */
.hero__block .views-exposed-form {
  margin-bottom: 32px;
}

.hero__block .views-exposed-form .views-exposed-widget {
  display: inline-block;
  vertical-align: top;
  float: none;
}

/**
 *
 *
 *  CIVICRM Amends
 *
 *
 */
/**
 * Customizing CiviCRM field labels
 */
.crm-public-form-item label {
  display: block !important;
  margin-bottom: 1rem;
}

.crm-i-button > .crm-i {
  display: none;
}

.crm-public-form-item input[type='radio'] + label {
  display: inline !important;
  margin-right: 1em;
}

.membership_amount-content label {
  display: inline !important;
}

.CRM_Contribute_Form_Contribution_Main h3 {
  margin: 0;
  /* 2 */
  /* 2 */
  /* 3 */
  /* 5 */
  /* 5 */
  /* 6 */
  margin-bottom: 16px;
  /* 8 */
  margin-bottom: 1rem;
  /* 8 */
  background-color: transparent;
}

/**
 * Fixed width select boxes in civicrm :(
 */
#crm-container.crm-public input[type="text"], #crm-container.crm-public input[type="password"], #crm-container.crm-public input[type="email"], #crm-container.crm-public select {
  width: 90%;
}

/**
 * Registration form
 */
#register-organisation-section {
  display: none;
}

/**
 * Tony's addition
 */
.webform-client-form webform-client-form-54.div.fieldset.legend {
  background-color: #96b857;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: white;
  border-top: solid 1px white;
}

/**
 * Event page amends
 */
.page-event .event-details {
  padding: 1em;
  padding-bottom: 0;
  background-color: #3a4752;
  color: white;
  margin: 1em -16px;
}

/**
 * Qaulification page amends
 */
.qualification-required-points {
  padding: 1em;
  background-color: #96b857;
  color: white;
  margin-bottom: 1em;
}

/**
 * Disabled buttons don't display text
 */
.btn--blue [disabled=disabled], .btn--blue.is-disabled, .btn--blue:disabled {
  color: #1f507a !important;
}

.form-submit:disabled {
  background-color: transparent;
  border-color: #ddd;
  border-style: solid;
  border-width: 1px;
  color: #ddd !important;
}

/**
 *  Handling drop downs having no border on white backgrounds :(
 */
.select-border-grey .select2 .select2-selection {
  border-color: #aaa;
}

.table--responsive tbody tr.qualification-extra-course-info {
  display: none;
}

.qualification-extra-course-info {
  background-color: #606d78;
  color: white;
  display: none;
}

/**
 * Hide blog user link in breadcrumb
 */
.node-type-blog #breadcrumb a:last-child {
  display: none;
}

/**
 * Stripping select2 dropdowns for readability
 */
ul.select2-results__options li:nth-child(even) {
  background-color: #ddd;
  color: black;
}

ul.select2-results__options li:nth-child(even):hover {
  background-color: #333;
  color: white;
}

/** Course page amends **/
.course-level {
  display: inline-block;
  padding: 0.5em;
  color: white;
  width: 100%;
}

.course-level.introductory {
  background-color: #02b294;
}

.course-level.intermediate {
  background-color: #00aeef;
}

.course-level.advanced {
  background-color: #ec008c;
}

.course-level.personal-skills {
  background-color: #f47d31;
}

/* Amend to display of PR week page TF - 06/07/16 */
.full-width iframe {
  width: 100%;
  min-height: 600px;
}

.bean-call-to-action .btn, .bean-call-to-action button {
  margin-bottom: 1em;
}

.bean-call-to-action .title-block-bean {
  position: relative;
  color: #fff;
  margin: 0;
}

.cta-block-text {
  margin-top: 1em;
}

.qualifications-table th {
  border-bottom: none;
}

/**
 * CTA blocks work
 */
.bean-call-to-action {
  margin-bottom: 1em;
}

.block--cta-callout {
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: solid 4px;
}

/**
 * Homepage view work
 */
.homepage-hero-link {
  text-decoration: none;
}

.view-homepage-latest img {
  display: block;
  margin-bottom: 16px;
}

.view-homepage-latest .masonry {
  margin: 24px 0 12px 0;
}

.view-homepage-latest .masonry__item {
  display: inline-block;
  vertical-align: top;
}

.view-homepage-latest .box h3 {
  margin-bottom: 24px;
}

.view-homepage-latest .box h3 a {
  text-decoration: none;
}

.view-homepage-latest .box h3 a:hover, .view-homepage-latest .box h3 a:focus {
  text-decoration: underline;
}

.view-homepage-latest .box__content-media {
  background-position: 50%;
}

.view-homepage-latest .teaser__meta {
  margin: 0;
}

.quali-courses-tbl {
  display: none;
}

/**
 * Training buttons
 */
.btn-quali-course {
  width: 100%;
  text-align: center;
}

/**
 * Intro panel section work
 */
.intro-panel .content {
  padding: 1em 1em 1px 1em;
  margin-left: -16px;
  margin-right: -16px;
  color: #fff;
}

/**
 * Blog extras styling
 */
.view-blog-extra-details dl {
  margin: 0;
  padding: 0;
}

.org-img-container img {
  margin-top: 1em;
  display: block;
  max-width: none;
  height: 120px;
  width: auto;
  border: solid 4px #e9edf0;
}

.sidebar .contextual-links-region {
  clear: both;
}

.sidebar .bean-call-to-action {
  padding-left: 0;
  padding-right: 0;
}

.page-user-edit #edit-mimemail {
  display: none;
}

.page-user-edit #edit-contact {
  display: none;
}

.case-study-img-container img {
  width: 100%;
}

.course-trainer-image {
  padding-bottom: 1em;
  width: 100%;
}

@media (min-width: 480px) {
  .course-trainer-image {
    width: 30%;
  }
}
