/* global variables, mixins, functions, etc. */
/* ==========================================================================
   SASS Base: Variables, mixins, etc.
   ========================================================================== */
/*
 * Easy conversion to em from pixels
 */
/*
 * Replicate adobe tracking values in em
 */
/*
 * Photoshop Text Shadow
 * NOTE: $spread has no effect for text shadows
 * https://gist.github.com/heygrady/1039282
 */
/*
 * Using variation specific font names from the start to avoid IE8 issues
 * http://help.typekit.com/customer/portal/articles/6855-Using-multiple-weights-and-styles
 */
/*
 * Variations on old compass mixins
 */
/*
 * HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/
 * Don't edit
 */
/* normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/**
 * 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 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/**
 * Address margins handled incorrectly in IE 6/7.
 */
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 font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.67em;
  margin: 2.33em 0; }

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

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

blockquote {
  margin: 1em 40px; }

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

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

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

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0; }

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none; }

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none; }

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

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

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

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

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0; }

/**
 * 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 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/**
 * Address Firefox 3+ 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 6+.
 * 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.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

/**
 * 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.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

/**
 * 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 */
  -moz-box-sizing: content-box;
  -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 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 6/7/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; }

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222; }

html {
  font-size: 1em;
  line-height: 1.4; }

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 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 receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1; }

/* override parent theme styles */
div#main {
  content: '';
  float: none;
  width: auto; }

section#primary {
  float: none;
  padding: 0;
  width: auto; }

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

p, td, th, li, dd, dt {
  line-height: inherit; }

/* user defined base styles */
blockquote {
  background: #f7f7f7;
  margin-left: 0;
  margin-right: 0;
  padding: 1.875em; }
  blockquote > :first-child {
    margin-top: 0; }
  blockquote > :last-child {
    margin-bottom: 0; }

html, body {
  background-color: #3d3d3d;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300; }

.screen-reader {
  display: block !important;
  left: -9999px !important;
  position: absolute !important; }

.button {
  background-color: #ff8a00;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff !important;
  display: inline-block;
  font-size: 1.25em;
  letter-spacing: -0.05em;
  line-height: 1em;
  padding: 1em 2em;
  text-decoration: none !important;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.36);
  font-family: "OpenSans Semi-bold", sans-serif;
  font-style: normal;
  font-weight: 600; }

.button[type="submit"] {
  background-color: #ff8a00;
  background-image: none;
  border-radius: 5px;
  border: 0;
  padding: 1em 2em; }

.button-text--smaller {
  display: block;
  letter-spacing: -0.025em;
  font-size: 0.65em;
  line-height: 1em; }

.button--alt, .event-details-details .button {
  background-color: #3d3d3d; }
  .button--alt.button--inactive, .event-details-details .button--inactive.button {
    background-color: #ccc;
    /* @include text-shadow(none); */ }

.button--icon:before {
  font-family: 'icons';
  padding-right: 0.5em;
  position: relative;
  top: -2px;
  vertical-align: middle; }

.button--save {
  position: relative; }
  .button--save:before {
    content: '\e80c'; }

.button--download:before {
  content: '\e80d'; }

.button--translations:before {
  background: url(../images/icon-globe.png) no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 1em;
  margin-right: 0.25em;
  padding-right: 0;
  width: 1em; }

@font-face {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/icons.eot?784525");
  src: url("../fonts/icons.eot?784525#iefix") format("embedded-opentype"), url("../fonts/icons.woff?784525") format("woff"), url("../fonts/icons.ttf?784525") format("truetype"), url("../fonts/icons.svg?784525#types") format("svg"); }
h1, h2, h3, h4 {
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }

h1 {
  font-size: 2.8125em;
  letter-spacing: -0.05em;
  line-height: 1em; }

h2 {
  font-size: 1.75em;
  letter-spacing: -0.05em;
  line-height: 1em;
  margin: 1.7857142857em 0 0.8928571429em; }

input[type="text"], input[type="password"], textarea, .form--styled-select-wrap, input[type="file"] {
  border: 1px solid #d2d2d2;
  box-sizing: border-box;
  color: #3d3d3d;
  font-size: 1.125em;
  padding: 0.5555555556em 1.1111111111em;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300; }

input[type="file"] {
  border: 0;
  line-height: 1em;
  padding-left: 0;
  padding-right: 0; }

.form--styled-select-wrap {
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%; }
  .form--styled-select-wrap select {
    border: 0;
    box-sizing: border-box;
    color: #3d3d3d;
    cursor: pointer;
    outline: 0;
    padding: 0.5555555556em 1.1111111111em;
    width: 130% !important;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 2;
    background: transparent; }
  .form--styled-select-wrap:after {
    border: 7px solid transparent;
    border-top-color: #a4a4a4;
    content: '';
    display: block;
    height: 0;
    margin-top: -4px;
    position: absolute;
    right: 0.5em;
    top: 50%;
    width: 0;
    z-index: 1; }

/* ==========================================================================
   Global link styles
   ========================================================================== */
a {
  color: #ff8a00;
  text-decoration: none; }

a:hover {
  color: #ff8a00;
  text-decoration: underline; }

a:visited {
  color: #ff8a00; }

/* third-party libraries */
/*
 * 	Core Owl Carousel CSS File
 *	v1.3.2
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center; }

/* Styling Next and Prev buttons */
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none; }

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */ }

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791; }

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1; }

/*
 *  Owl Carousel CSS3 Transitions
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px; }

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease; }

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease; }

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease; }

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease; }

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both; }

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both; }

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both; }

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both; }

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1; } }
@-moz-keyframes empty {
  0% {
    opacity: 1; } }
@keyframes empty {
  0% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-moz-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes backSlideOut {
  25% {
    opacity: 1;
    -webkit-transform: translateZ(-500px); }
  75% {
    opacity: 1;
    -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-500px) translateX(-200%); } }
@-moz-keyframes backSlideOut {
  25% {
    opacity: 1;
    -moz-transform: translateZ(-500px); }
  75% {
    opacity: 1;
    -moz-transform: translateZ(-500px) translateX(-200%); }
  100% {
    opacity: 1;
    -moz-transform: translateZ(-500px) translateX(-200%); } }
@keyframes backSlideOut {
  25% {
    opacity: 1;
    transform: translateZ(-500px); }
  75% {
    opacity: 1;
    transform: translateZ(-500px) translateX(-200%); }
  100% {
    opacity: 1;
    transform: translateZ(-500px) translateX(-200%); } }
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: 1;
    -webkit-transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: 1;
    -webkit-transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0); } }
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: 1;
    -moz-transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: 1;
    -moz-transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0); } }
@keyframes backSlideIn {
  0%, 25% {
    opacity: 1;
    transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: 1;
    transform: translateZ(-500px); }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0); } }
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8); } }
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8); } }
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8); } }
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%); } }
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%); } }
@keyframes goDown {
  from {
    transform: translateY(-100%); } }
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5); } }
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5); } }
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5); } }
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5); } }
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5); } }
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5); } }
/* module or section specific styles */
.account-section h2 {
  border-bottom: 1px solid #d2d2d2;
  font-size: 1.75em;
  letter-spacing: -0.05em;
  line-height: 1em;
  margin: 0 0 0.3333333333em 0;
  padding-bottom: 0.3333333333em;
  text-align: center;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }
  @media (max-width: 30em) {
    .account-section h2 {
      font-size: 1.125em;
      line-height: 1.2222222222em;
      padding-bottom: 0.5555555556em; } }

.account-section-register-callout {
  clear: both;
  float: left;
  margin: 3.125em auto;
  overflow: hidden;
  text-align: center;
  width: 100%; }

.account-section-form {
  float: left;
  overflow: hidden;
  padding: 0 5% 0 0;
  position: relative;
  width: 45%; }
  @media (max-width: 48em) {
    .account-section-form {
      margin: 0 0 1.875em 0;
      padding: 0;
      position: static;
      width: 100%; } }
  .account-section-form .or-text {
    background: #ff8a00;
    box-sizing: border-box;
    color: #ffffff;
    display: block;
    height: 30px;
    line-height: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 6.25em;
    width: 30px;
    border-radius: 50%;
    font-family: "OpenSans Bold", sans-serif;
    font-style: normal;
    font-weight: 700; }
    @media (max-width: 48em) {
      .account-section-form .or-text {
        margin: 0.625em auto 0 auto;
        position: static;
        top: auto; } }
  .account-section-form .zoo_visitor_form {
    margin-top: 1.25em;
    overflow: hidden; }

.account-section__form form {
  position: relative; }
  .account-section__form form:after {
    content: "";
    display: table;
    clear: both; }
  .account-section__form form p,
  .account-section__form form .form-field-wrapper {
    clear: both;
    margin: 0 0 0.625em; }
    .account-section__form form p input[type="text"],
    .account-section__form form p input[type="password"],
    .account-section__form form p textarea,
    .account-section__form form p select,
    .account-section__form form .form-field-wrapper input[type="text"],
    .account-section__form form .form-field-wrapper input[type="password"],
    .account-section__form form .form-field-wrapper textarea,
    .account-section__form form .form-field-wrapper select {
      width: 100%; }
    .account-section__form form p textarea,
    .account-section__form form .form-field-wrapper textarea {
      height: 12.5em;
      margin-top: 0.625em; }
  .account-section__form form .form-field-wrapper--first-name,
  .account-section__form form .form-field-wrapper--last-name,
  .account-section__form form .form-field-wrapper--country,
  .account-section__form form .form-field-wrapper--postal-code,
  .account-section__form form .form-field-wrapper--password,
  .account-section__form form .form-field-wrapper--password-confirm {
    clear: none;
    float: left; }
  .account-section__form form .form-field-wrapper--select-radio ul {
    list-style: none;
    padding: 0 0.3125em; }
  .account-section__form form .form-field-wrapper--first-name {
    margin-right: 2%;
    width: 48%; }
  .account-section__form form .form-field-wrapper--last-name {
    width: 50%; }
  .account-section__form form .form-field-wrapper--password {
    margin-right: 2%;
    width: 48%; }
  .account-section__form form .form-field-wrapper--password-confirm {
    width: 50%; }
  .account-section__form form .form-field-wrapper--country {
    margin-right: 2%;
    width: 48%; }
  .account-section__form form .form-field-wrapper--postal-code {
    display: none;
    width: 50%; }
    .account-section__form form .form-field-wrapper--postal-code.on {
      display: block; }
  .account-section__form form .form-field-wrapper--file > div {
    margin-top: 0.625em; }
  .account-section__form form .form-field-wrapper--buttons {
    margin-bottom: 0; }

.account-section-social-join {
  float: left;
  overflow: hidden;
  width: 50%; }
  @media (max-width: 48em) {
    .account-section-social-join {
      padding: 0;
      width: 100%; } }
  .account-section-social-join #social-login-target {
    margin: 3.125em auto; }
  .account-section-social-join .missing-info {
    display: none; }

.author-block {
  position: relative; }

.author-block__author-image {
  float: right;
  position: relative;
  top: -1.5625em;
  width: 5.625em; }

.author-block__author-info {
  margin-right: 6.5625em;
  max-width: 18.75em; }

.author-info-name {
  font-size: 0.875em;
  line-height: 1em;
  margin: 0;
  text-transform: uppercase;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }
  .author-info-name * {
    margin: 0; }

.author-info-description {
  font-size: 0.6875em;
  line-height: 1.1818181818em;
  margin: 0.3571428571em 0 0 0;
  text-transform: uppercase; }
  .author-info-description > :first-child {
    margin-top: 0; }
  .author-info-description > :last-child {
    margin-bottom: 0; }

.author-image {
  display: block;
  height: 7.8125em;
  overflow: hidden;
  width: 7.8125em; }
  .author-image img {
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
    width: 100%; }

.blog-tags {
  margin: 3.125em 0 0 0;
  text-transform: uppercase; }
  .blog-tags h2, .blog-tags li {
    font-size: 11px;
    float: left;
    line-height: 1em;
    margin: 0 20px 0 0;
    vertical-align: middle; }
  .blog-tags h2 {
    font-family: "OpenSans Semi-bold", sans-serif;
    font-style: normal;
    font-weight: 600; }
  .blog-tags ul {
    list-style: none;
    padding: 0; }

.content-block-secondary__type-icon {
  font-size: 16px;
  margin-bottom: 0.9375em; }

h4 + .content-block-secondary__type-icon {
  margin-top: -0.625em; }

.comment-list {
  list-style: none;
  padding: 0; }

.comment-list-comment {
  margin: 0.9375em 0; }

.comment-list-comment-source {
  display: block;
  font-size: 0.7857142857em;
  line-height: 1em;
  margin-top: 0.2727272727em;
  text-transform: uppercase; }

#comments-target {
  max-width: 100%; }

/* .comments-login-message {
    display: none;
    p {
        margin-bottom: 0;
    }
}
body.user--logged-out {
    .comments-login-message {
        display: block;
    }
    #comments-target-commentBox {
        display: none;
    }
} */
.content-header {
  margin-bottom: 1.5625em;
  position: relative; }
  @media (max-width: 63.9375em) {
    .content-header {
      font-size: 15px; } }
  @media (max-width: 47.9375em) {
    .content-header {
      font-size: 14px; } }

.content-header__type-icon {
  left: 0;
  position: absolute;
  top: 0; }

.content-header-info {
  margin-left: 10.9375em; }
  .content-header-info.no-photo {
    margin-left: 0; }

.content-header-info__page-title h1 {
  margin-top: 0; }
.content-header-info__page-title .content-title {
  text-align: left; }

.content-header-info__content-date-author {
  border-top: 1px solid #dcdcdc;
  width: 85%; }

.content-date-author {
  padding: 1.875em 0 0.625em; }
  .content-date-author:after {
    content: "";
    display: table;
    clear: both; }

.content-date-author__content-date {
  float: left;
  line-height: 1em; }

.content-date-author__author-blocks .author-blocks {
  display: flex;
  margin-right: -6.25em; }
  @media (max-width: 1023px) {
    .content-date-author__author-blocks .author-blocks {
      margin-right: 0; } }
  .content-date-author__author-blocks .author-blocks .author-block {
    float: none;
    margin-right: 20px; }
    .content-date-author__author-blocks .author-blocks .author-block:last-child {
      margin-right: 0; }
    .content-date-author__author-blocks .author-blocks .author-block.author-block--with-image {
      padding-right: 6.25em; }
      @media (max-width: 567px) {
        .content-date-author__author-blocks .author-blocks .author-block.author-block--with-image {
          padding-right: 0; } }
      .content-date-author__author-blocks .author-blocks .author-block.author-block--with-image .author-block__author-image {
        right: 0; }
.content-date-author__author-blocks .author-image {
  height: 5.625em;
  width: 5.625em; }

.content-date-author__author-block {
  float: right;
  text-align: right; }

.content-date,
.content-geography {
  display: block;
  font-size: 0.875em;
  line-height: 1.1428571429em;
  text-transform: uppercase;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }

.content-comments {
  display: block;
  font-size: 0.875em;
  line-height: 1em;
  margin: 0.3571428571em 0 0;
  text-transform: uppercase; }
  .content-comments a {
    color: #3d3d3d; }

.content-date-author__author-blocks {
  float: right;
  text-align: right;
  max-width: 36.5625em; }
  .content-date-author__author-blocks.total-authors-3 .author-block {
    float: none;
    margin: 0 0 0.3125em; }
  .content-date-author__author-blocks.total-authors-3 .author-block--with-image,
  .content-date-author__author-blocks.total-authors-3 .author-block--with-image:first-child {
    margin: 0 0 0.3125em; }
  .content-date-author__author-blocks.total-authors-3 .author-block__author-image,
  .content-date-author__author-blocks.total-authors-3 .author-info-description {
    display: none; }
  .content-date-author__author-blocks .author-block {
    float: right;
    margin-right: 1.5625em; }
    .content-date-author__author-blocks .author-block:first-child {
      margin-right: 0; }
  .content-date-author__author-blocks .author-block--with-image {
    margin-right: 7.8125em; }
  .content-date-author__author-blocks .author-block__author-image {
    position: absolute;
    right: -6.5625em; }
  .content-date-author__author-blocks .author-block__author-info {
    margin-right: 0; }

@media (max-width: 63.9375em) {
  .content-header {
    margin-bottom: 0;
    min-height: 9.375em;
    padding-bottom: 5.9375em;
    position: relative; }

  .content-header-info__content-date-author {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    width: auto; }

  .content-date-author__author-blocks .author-block--with-image:first-child {
    margin-right: 6.5625em; } }
@media (max-width: 35.4375em) {
  .content-header {
    min-height: 0;
    padding: 0;
    position: static; }

  .content-header__type-icon {
    height: 75px;
    left: 0;
    overflow: hidden;
    top: -5px;
    width: 100%; }
    .content-header__type-icon .type-icon {
      display: block;
      padding: 16px 0;
      width: 100%;
      border-radius: 0; }
      .content-header__type-icon .type-icon .assistive-text {
        line-height: 75px !important;
        height: 100%;
        padding: 0; }
    .content-header__type-icon.has-image {
      height: auto;
      text-align: left; }
      .content-header__type-icon.has-image .author-image {
        margin: 16px; }
      .content-header__type-icon.has-image img {
        width: 75px;
        height: 75px; }

  .content-header-info {
    margin: 0;
    padding-top: 20px; }

  .content-header-info__page-title {
    padding: 20px 0; }
    .content-header-info__page-title .page-title h1 {
      margin: 0; }

  .content-header-info__content-date-author {
    position: static;
    width: auto; }

  .content-date-author__author-blocks .author-block {
    float: none;
    margin: 0 0 0.3125em; }
  .content-date-author__author-blocks .author-block--with-image,
  .content-date-author__author-blocks .author-block--with-image:first-child {
    margin: 0 0 0.3125em; }
  .content-date-author__author-blocks .author-block__author-image {
    display: none; } }
.content-layout {
  border-top: 1px solid #dedede;
  display: table;
  padding-top: 3.125em;
  width: 100%;
  /* @include pie-clearfix; */ }

.content-layout-primary,
.content-layout-secondary {
  display: table-cell;
  vertical-align: top; }

.content-layout-primary {
  padding-right: 2.5em; }
  .content-layout-primary .wysiwyg-content > :first-child {
    margin-top: 0; }
  .content-layout-primary blockquote {
    margin-left: 0; }

.content-layout-secondary {
  padding-top: 0.375em;
  position: relative;
  width: 15em; }
  .content-layout-secondary > .content-layout-secondary__content-block:first-child {
    margin-top: 0; }

@media (max-width: 51.25em) {
  .content-layout,
  .content-layout-primary,
  .content-layout-secondary {
    display: block; }

  .content-layout-primary {
    padding-right: 0; } }
.content-layout--detail-image .content-layout-secondary {
  width: 20em; }
@media (max-width: 56.25em) {
  .content-layout--detail-image .content-layout,
  .content-layout--detail-image .content-layout-primary,
  .content-layout--detail-image .content-layout-secondary {
    display: block; }
  .content-layout--detail-image .content-layout-primary {
    padding-right: 0; } }

@media (max-width: 35.4375em) {
  .content-layout-secondary,
  .content-layout--detail-image .content-layout-secondary,
  .content-layout--dashboard .content-layout-secondary {
    width: auto; } }
.content-layout--dashboard .content-layout-primary {
  margin: 0;
  padding-right: 2%;
  width: 70%; }
.content-layout--dashboard .content-layout-secondary {
  padding: 0;
  min-width: 240px;
  width: 30%; }
  .content-layout--dashboard .content-layout-secondary .content-block:first-child h3 {
    margin-top: 0; }
.content-layout--dashboard .content-layout-secondary__buttons .button {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
.content-layout--dashboard .listing-blocks {
  margin: 0; }
.content-layout--dashboard .listing-blocks-grid-sizer,
.content-layout--dashboard .listing-block {
  width: 49%; }
@media (max-width: 57.5em) {
  .content-layout--dashboard .listing-blocks-grid-sizer,
  .content-layout--dashboard .listing-block {
    width: 100%; } }
@media (max-width: 51.25em) {
  .content-layout--dashboard .content-layout {
    display: table; }
  .content-layout--dashboard .content-layout-primary,
  .content-layout--dashboard .content-layout-secondary {
    display: table-cell; } }
@media (max-width: 37.5em) {
  .content-layout--dashboard .content-layout,
  .content-layout--dashboard .content-layout-primary,
  .content-layout--dashboard .content-layout-secondary {
    display: block; }
  .content-layout--dashboard .content-layout-primary {
    margin-bottom: 1.25em;
    padding: 0;
    width: auto; }
  .content-layout--dashboard .content-layout-secondary {
    width: auto; } }

.content-layout-secondary__content-block {
  margin: 3.5714285714em 0;
  font-size: 0.875em;
  line-height: 1.125em; }
  .content-layout-secondary__content-block h3 {
    border-bottom: 1px solid #dedede;
    font-size: 1.7142857143em;
    letter-spacing: -0.05em;
    line-height: 1em;
    margin-bottom: 0.8333333333em;
    padding-bottom: 0.625em; }
    .content-layout-secondary__content-block h3.alt {
      background: #666666;
      color: #ffffff;
      font-size: 1.0714285714em;
      letter-spacing: 0;
      line-height: 3em;
      padding: 0 1.3333333333em; }
      .content-layout-secondary__content-block h3.alt + .content-block-content {
        padding: 0 1.25em; }

.content-layout-primary__detail-image img {
  max-width: 100%; }

.content-layout-secondary__detail-image {
  margin-bottom: 0.625em; }
  .content-layout-secondary__detail-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%; }

.content-layout-secondary__page-sharing {
  position: absolute;
  right: -4.6875em; }
  @media (max-width: 72.5em) {
    .content-layout-secondary__page-sharing {
      position: static;
      margin-bottom: 1.5625em; } }

.content-layout-secondary__page-sharing + .content-layout-secondary__content-block {
  margin-top: 0; }

.lt-ie10 .content-layout-secondary__page-sharing {
  margin-bottom: 1.5625em;
  position: static; }

.content-layout-secondary__buttons .button, .content-layout-secondary__buttons .translations-dropdown {
  margin-bottom: 0.5em;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 100%; }

.content-block__event-details {
  position: relative; }

.event-details {
  background: #ff8a00;
  color: #fff;
  padding: 1.5625em;
  /* @include border-radius(5px); */ }
  .event-details h3 {
    border: 0;
    margin: 0;
    /* @include text-shadow(0 1px 1px rgba(0, 0, 0, 0.25)); */ }

.event-details-content {
  font-size: 1.125em;
  line-height: 1.1666666667em; }

.event-details-details a {
  color: #fff !important;
  text-decoration: underline !important; }
.event-details-details > :last-child {
  margin-bottom: 0; }
.event-details-details .button {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  text-decoration: none !important;
  width: 100%; }

.fc-identity {
  color: #d2d2d2;
  text-align: center; }
  .fc-identity p {
    font-size: 0.6875em;
    line-height: 1.2727272727em;
    margin: 0.625em 0;
    text-transform: uppercase; }
  .fc-identity .fc-identity-logo {
    background-size: 100%;
    display: inline-block;
    height: 5.4375em;
    width: 6.6875em;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden; }
    .fc-identity .fc-identity-logo a {
      display: block;
      height: 100%;
      width: 100%; }
  .fc-identity .fc-identity-icon {
    margin-top: 1.3636363636em;
    padding-top: 2.2727272727em;
    position: relative; }
    .fc-identity .fc-identity-icon:after {
      background-size: 100%;
      content: '';
      display: block;
      height: 1.4545454545em;
      left: 50%;
      margin-left: -0.7272727273em;
      position: absolute;
      top: 0;
      width: 1.4545454545em; }
  .fc-identity .fc-identity-icon--location:after {
    background-image: url(../images/icon-location.png);
    width: 1.0909090909em; }
  .fc-identity .fc-identity-icon--phone:after {
    background-image: url(../images/icon-phone.png); }
  @media (max-width: 63.9375em) {
    .fc-identity {
      text-align: left; }
      .fc-identity .fc-identity-logo {
        float: left; }
      .fc-identity .fc-identity-info {
        margin-left: 8.625em; }
      .fc-identity .fc-identity-icons {
        overflow: hidden; }
      .fc-identity .fc-identity-icon {
        margin-top: 0.4545454545em; }
        .fc-identity .fc-identity-icon:after {
          left: 0;
          margin-left: 0; }
      .fc-identity .fc-identity-icon--location {
        float: left;
        margin-right: 1.5625em; }
      .fc-identity .fc-identity-icon--phone {
        float: left; } }
  @media (max-width: 47.9375em) {
    .fc-identity {
      display: inline-block;
      margin: 0 auto;
      text-align: left; } }
  @media (max-width: 35.4375em) {
    .fc-identity {
      text-align: center; }
      .fc-identity .fc-identity-logo {
        float: none; }
      .fc-identity .fc-identity-info {
        margin-left: 0; }
        .fc-identity .fc-identity-info > p {
          max-width: 18.1818181818em; }
      .fc-identity .fc-identity-icon {
        margin-top: 1.3636363636em; }
        .fc-identity .fc-identity-icon:after {
          left: 50%;
          margin-left: -0.7272727273em; } }

.lt-ie9 .fc-identity .fc-identity-icon {
  padding: 0; }
  .lt-ie9 .fc-identity .fc-identity-icon:after {
    display: none; }

.total-results {
  color: #000000;
  font-size: 0.75em;
  font-weight: 600; }

.filtered-listing {
  min-height: 37.5em;
  overflow: hidden;
  position: relative; }

.filtered-listing__listing-filters {
  float: left;
  width: 30%; }
  .filtered-listing__listing-filters .listing-filters {
    margin: 0; }

.filtered-listing__listing-blocks {
  float: right;
  position: relative;
  width: 68%; }
  .filtered-listing__listing-blocks .listing-blocks {
    margin: 0; }
  .filtered-listing__listing-blocks .listing-blocks-grid-sizer,
  .filtered-listing__listing-blocks .listing-block {
    width: 49%; }
  .filtered-listing__listing-blocks .listing-blocks-data {
    display: none; }
  .filtered-listing__listing-blocks.is-loading {
    padding-bottom: 36px; }
    .filtered-listing__listing-blocks.is-loading:after {
      background: url(../images/ajax-loader.gif);
      bottom: 0;
      content: '';
      height: 16px;
      margin-left: -8px;
      left: 50%;
      position: absolute;
      width: 16px; }

.filtered-listing-sorted-by {
  border-bottom: 1px solid #dedede;
  color: #3d3d3d;
  font-size: 0.6875em;
  text-transform: uppercase; }
  .filtered-listing-sorted-by h3 .active {
    color: #3d3d3d; }

.filtered-listing-filters-description {
  color: #3d3d3d;
  font-size: 0.6875em;
  text-transform: uppercase; }

.filtered-listing-filters-description--active-filters {
  display: none; }

.filtered-listing__listing-filters .toggle {
  display: none; }

@media (max-width: 60em) {
  .filtered-listing__listing-filters {
    font-size: 14px; }

  .filtered-listing__listing-blocks .listing-blocks {
    font-size: 16px; } }
@media (max-width: 57.5em) {
  .filtered-listing__listing-blocks .listing-blocks-grid-sizer,
  .filtered-listing__listing-blocks .listing-block {
    width: 100%; }

  .filtered-listing__listing-filters {
    width: 39%; }

  .filtered-listing__listing-blocks {
    width: 59%; } }
@media (max-width: 38.75em) {
  .filtered-listing__listing-filters,
  .filtered-listing__listing-blocks {
    float: none;
    width: auto; }

  .filtered-listing__listing-blocks {
    padding-top: 3.125em; }

  .filtered-listing__listing-filters {
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0.625em 0 0 0; }
    .filtered-listing__listing-filters.fixed {
      background: #fff;
      left: 0;
      padding: 0.625em 1.0625em 0 1.0625em;
      position: fixed;
      border-bottom: 1px solid #bbb; }
    .filtered-listing__listing-filters .dropdown {
      max-height: 0;
      background: #fff; }
    .filtered-listing__listing-filters.expanded .dropdown {
      max-height: 25em;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch; }
    .filtered-listing__listing-filters .toggle {
      background-color: #dedede;
      color: #3d3d3d !important;
      cursor: pointer;
      display: block;
      height: 1.25em;
      padding: 0.625em;
      text-align: center;
      text-decoration: none;
      position: relative;
      font-family: "OpenSans Bold", sans-serif;
      font-style: normal;
      font-weight: 700; }
      .filtered-listing__listing-filters .toggle:hover {
        text-decoration: none; }
      .filtered-listing__listing-filters .toggle:after {
        background: url("../images/icon-pixel-arrow-up-down-small.png") no-repeat -493px 0;
        content: '';
        display: block;
        height: 4px;
        margin-top: -2px;
        position: absolute;
        right: 1.4285714286em;
        top: 50%;
        width: 7px; }
    .filtered-listing__listing-filters.expanded .toggle:after {
      background-position: 0 0; } }
label {
  margin: 0 0 0.125em 0;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }
  label .disclaimer {
    display: inline-block;
    font-size: 0.875em;
    font-family: "Open Sans", sans-serif;
    font-style: italic;
    font-weight: 300; }

.form-field-wrapper {
  margin: 0.9375em 0; }

.form-field-wrapper--select-radio ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1px; }
  .form-field-wrapper--select-radio ul li {
    margin: 0.9375em 0;
    position: relative; }
    .form-field-wrapper--select-radio ul li input {
      left: 0;
      position: absolute;
      top: 1px; }
    .form-field-wrapper--select-radio ul li label {
      display: block;
      line-height: 1em;
      margin-left: 22px;
      font-family: "Open Sans", sans-serif;
      font-style: normal;
      font-weight: 300; }
.form-field-wrapper--select-radio div ul li:before {
  display: none; }

.form-field-wrapper--select-single {
  position: relative; }
  .form-field-wrapper--select-single input {
    left: 0;
    position: absolute;
    top: 3px; }
  .form-field-wrapper--select-single label {
    display: block;
    font-size: 0.875em;
    line-height: 1.3125em;
    margin-left: 22px; }

.form-field-wrapper--member-photo .file_field {
  position: relative; }
.form-field-wrapper--member-photo .remove_file {
  left: auto;
  right: -6px; }
.form-field-wrapper--member-photo .filename {
  float: none;
  line-height: 1em;
  overflow: hidden;
  text-align: center; }
  .form-field-wrapper--member-photo .filename img {
    display: block;
    margin: 0 auto; }

.form-field-wrapper--buttons {
  margin-top: 1.5625em; }
  .form-field-wrapper--buttons .form-field-button .button {
    width: auto; }

.form-forgot-password-message {
  bottom: 1.6666666667em;
  font-size: 12px;
  position: absolute;
  right: 0; }

.form--share-your-wisdom .details {
  overflow: hidden; }
  .form--share-your-wisdom .details .form-field-wrapper {
    float: left;
    margin: 0;
    width: 49%; }
  .form--share-your-wisdom .details .form-field-wrapper--file {
    float: right; }
    .form--share-your-wisdom .details .form-field-wrapper--file input {
      width: 100%; }
  @media (max-width: 35.4375em) {
    .form--share-your-wisdom .details {
      overflow: none; }
      .form--share-your-wisdom .details .form-field-wrapper,
      .form--share-your-wisdom .details .form-field-wrapper--file {
        float: none;
        width: auto; }
      .form--share-your-wisdom .details .form-field-wrapper--file {
        margin-top: 0.625em; } }
.form--share-your-wisdom .form-field-wrapper--message textarea {
  height: 22.2222222222em;
  width: 100%; }

.hero {
  max-height: 600px;
  overflow: hidden; }
  @media (max-width: 61.25em) {
    .hero {
      font-size: 15px; } }
  @media (max-width: 57.5em) {
    .hero {
      font-size: 14px; } }
  @media (max-width: 53.75em) {
    .hero {
      font-size: 13px; } }
  @media (max-width: 50em) {
    .hero {
      font-size: 12px; } }
  @media (max-width: 46.25em) {
    .hero {
      font-size: 11px; } }
  @media (max-width: 35.5em) {
    .hero {
      font-size: 9px; } }
  @media (max-width: 35.4375em) {
    .hero {
      font-size: 8px; } }

.is-closed .hero {
  max-height: 0; }

.hero--with-image .hero-content {
  color: #ffffff; }

.hero-background {
  background-position: 50% 50%;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1; }

.hero-content {
  margin-bottom: 3.125em;
  position: relative;
  text-align: center;
  z-index: 2; }
  .hero-content h2 {
    font-size: 3.25em;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 300; }
  .hero-content p {
    margin: 1.875em 0 0; }
  .hero-content .button {
    font-size: 1.875em;
    padding-bottom: 0.625em;
    padding-top: 0.625em; }

.hero-close {
  display: block;
  height: 9px;
  margin: 0 auto;
  width: 15px;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("/wp-content/themes/fc_wordpress_grantcraft/images/icon-pixel-arrow-up.png");
  background-repeat: no-repeat;
  background-position: 0 0; }

.is-closed .hero-close {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("/wp-content/themes/fc_wordpress_grantcraft/images/icon-pixel-arrow-down.png");
  background-repeat: no-repeat;
  background-position: 0 0; }

@media (max-width: 63.9375em) {
  .home-section {
    font-size: 14px; } }
@media (max-width: 47.9375em) {
  .home-section {
    font-size: 12px; } }
@media (max-width: 35.4375em) {
  .home-section {
    font-size: 10px; } }
.home-section .with-rule {
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 3.75em; }
  @media (max-width: 35.4375em) {
    .home-section .with-rule {
      padding-bottom: 1.5625em; } }

.home-section-title {
  font-size: 3.25em;
  letter-spacing: -0.05em;
  line-height: 1.0769230769em;
  margin-top: 0; }

.home-section-content {
  font-size: 1.75em;
  letter-spacing: -0.025em;
  line-height: 1.1428571429em;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300; }

.home-section-category-listings {
  border-bottom: 1px solid #d2d2d2;
  max-height: 11.5625em;
  overflow: hidden;
  padding-bottom: 1.875em;
  position: relative;
  width: 100%; }
  .home-section-category-listings.is-open {
    max-height: 37.5em; }

.category-listing-toggle-display-link-wrapper {
  font-size: 0.6875em;
  line-height: 1em;
  margin: 1.25em 0 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }

.category-listing-toggle-display-link {
  color: #3d3d3d !important;
  position: relative; }
  .category-listing-toggle-display-link:hover {
    text-decoration: none; }

.home-section-category-listing {
  float: left;
  margin: 0 1.5%;
  width: 30%; }
  .home-section-category-listing h3 {
    border-bottom: 1px solid #d2d2d2;
    font-size: 1.875em;
    letter-spacing: -0.05em;
    line-height: 1.5em;
    margin: 0 0 0.3333333333em 0;
    padding-bottom: 0.3333333333em;
    font-family: "OpenSans Bold", sans-serif;
    font-style: normal;
    font-weight: 700; }
  .home-section-category-listing ul {
    line-height: 1em;
    list-style: none;
    margin: 0;
    padding: 0; }
    .home-section-category-listing ul li {
      font-size: 1.125em;
      list-style: none;
      margin: 0.7222222222em 0;
      padding: 0;
      text-align: left; }
    .home-section-category-listing ul a {
      color: #3d3d3d; }

@media (max-width: 35.4375em) {
  .home-section-category-listings {
    max-height: 11.875em; }
    .home-section-category-listings.is-open {
      max-height: 125em; }

  .home-section-category-listing {
    margin: 0.625em 0;
    width: 100%; }
    .home-section-category-listing h3 {
      font-size: 1.875em; }
    .home-section-category-listing ul {
      font-size: 12px; }
    .home-section-category-listing ul li {
      text-align: center; } }
.home-section-channel-listings {
  border-bottom: 1px solid #d2d2d2;
  padding: 1.875em 0; }

.home-section-channel-listing {
  list-style: none;
  padding: 0;
  position: relative; }
  .home-section-channel-listing li {
    display: inline-block;
    list-style: none; }
    .home-section-channel-listing li a {
      margin: 0.3125em 0; }
  .home-section-channel-listing .owl-pagination {
    display: block; }
    @media (min-width: 48em) {
      .home-section-channel-listing .owl-pagination {
        display: none; } }
  .home-section-channel-listing .owl-buttons {
    display: none; }
    @media (min-width: 48em) {
      .home-section-channel-listing .owl-buttons {
        display: block; } }
  .home-section-channel-listing .owl-prev {
    display: block;
    height: 15px;
    left: -20px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 9px;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden;
    background-image: url("/wp-content/themes/fc_wordpress_grantcraft/images/icon-pixel-arrow-left.png");
    background-repeat: no-repeat;
    background-position: 0 0; }
  .home-section-channel-listing .owl-next {
    display: block;
    height: 15px;
    margin-top: -8px;
    position: absolute;
    right: -20px;
    top: 50%;
    width: 9px;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden;
    background-image: url("/wp-content/themes/fc_wordpress_grantcraft/images/icon-pixel-arrow-right.png");
    background-repeat: no-repeat;
    background-position: 0 0; }

.home-section--fc-features__listing-blocks {
  font-size: 16px; }

.home-section-join-content {
  float: left;
  padding: 0 5% 0 0;
  width: 45%; }
  @media (max-width: 48em) {
    .home-section-join-content {
      margin: 0 0 1.875em 0;
      padding: 0;
      width: 100%; } }
  .home-section-join-content h3 {
    border-bottom: 1px solid #d2d2d2;
    font-size: 1.875em;
    letter-spacing: -0.05em;
    line-height: 1.5em;
    margin: 0 0 0.3333333333em 0;
    padding-bottom: 0.3333333333em;
    font-family: "OpenSans Bold", sans-serif;
    font-style: normal;
    font-weight: 700; }

.home-section-twitter-content {
  float: left;
  width: 50%; }
  @media (max-width: 48em) {
    .home-section-twitter-content {
      padding: 0;
      width: 100%; } }

.home-section__listing-blocks {
  text-align: left; }

.home-section-channel-listing .type-icon--curated_content:hover .assistive-text,
.home-section-channel-listing .type-icon--guided_reading:hover .assistive-text,
.home-section-channel-listing .type-icon--infographics:hover .assistive-text {
  font-size: 0.2444444444em;
  line-height: 10.4545454545em; }

.link-list {
  list-style: none;
  padding: 0; }
  .link-list > .link-list-item {
    list-style: none;
    padding: 0; }

.link-list-item {
  margin: 0.625em 0; }
  .link-list-item a {
    color: #3d3d3d; }

.link-list--inline ul {
  margin: 0 0 0.9375em;
  overflow: hidden; }
.link-list--inline h4 {
  margin: 0; }
.link-list--inline .link-list-item {
  display: block; }

/* listing block layout - assumes default 1000px width */
.listing-block:last-child {
  margin-bottom: 0; }

.listing-blocks {
  list-style: none;
  overflow: hidden;
  padding: 0;
  position: relative; }
  .listing-blocks > .listing-blocks-grid-sizer,
  .listing-blocks > .listing-blocks-gutter-sizer {
    list-style: none;
    padding: 0; }

.listing-blocks-grid-sizer,
.listing-block {
  width: 32%; }

.listing-blocks-gutter-sizer {
  width: 2%; }

.listing-block {
  list-style: none;
  padding: 0;
  width: 32%; }
  @media (max-width: 47.9375em) {
    .listing-block {
      font-size: 15px; } }
  @media (max-width: 35.4375em) {
    .listing-block {
      font-size: 14px;
      width: 100%; } }

.listing-block-image {
  height: 10em; }

.listing-block-content {
  height: 10em; }

.listing-block--with-image {
  height: 21.25em; }
  .listing-block--with-image .listing-block-content {
    height: 11.875em; }

@media (max-width: 60em) {
  .listing-blocks-grid-sizer,
  .listing-block {
    width: 49%; } }
@media (max-width: 40em) {
  .listing-blocks-grid-sizer,
  .listing-block {
    width: 100%; } }
@media (min-width: 42.5em) {
  .listing-block--featured {
    height: 21.25em; }
    .listing-block--featured .listing-block-content {
      height: 100%; } }
@media (min-width: 42.5em) and (max-width: 60em) {
  .listing-block--featured {
    width: 100%; } }
@media (min-width: 60em) {
  .listing-block--featured {
    width: 66%; } }
.listing-blocks--takeaways .listing-blocks-grid-sizer,
.listing-blocks--takeaways .listing-block {
  width: 49%; }
  @media (max-width: 47.9375em) {
    .listing-blocks--takeaways .listing-blocks-grid-sizer,
    .listing-blocks--takeaways .listing-block {
      width: 100%; } }
.listing-blocks--takeaways .listing-block-content {
  height: auto; }

/* all other listing block styles */
.listing-block {
  background-color: #f7f7f7;
  display: block;
  float: left;
  overflow: hidden;
  position: relative; }

.listing-block__type-icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2; }

.listing-block-link {
  background: rgba(255, 255, 255, 0);
  display: block;
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  zoom: 1;
  z-index: 1;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden; }

.listing-block-image {
  overflow: hidden; }
  .listing-block-image img {
    width: 100%; }

.listing-block-content {
  border-bottom: 4px solid;
  box-sizing: border-box;
  padding: 1.25em;
  overflow: hidden;
  width: 100%; }

.listing-block--blog .listing-block-content {
  border-bottom-color: #1ac908; }

.listing-block--case-studies .listing-block-content {
  border-bottom-color: #f1b701; }

.listing-block--curated-content .listing-block-content {
  border-bottom-color: #b10079; }

.listing-block--discussions .listing-block-content {
  border-bottom-color: #3646bb; }

.listing-block--events .listing-block-content {
  border-bottom-color: #6334aa; }

.listing-block--foundation-center-features .listing-block-content {
  border-bottom-color: #3465aa; }

.listing-block--guided-reading .listing-block-content {
  border-bottom-color: #7c378a; }

.listing-block--guides .listing-block-content {
  border-bottom-color: #ff8a00; }

.listing-block--infographics .listing-block-content {
  border-bottom-color: #f19f01; }

.listing-block--podcasts .listing-block-content {
  border-bottom-color: #09a275; }

.listing-block--takeaways .listing-block-content {
  border-bottom-color: #e43304; }

.listing-block--tools .listing-block-content {
  border-bottom-color: #dc0030; }

.listing-block--videos .listing-block-content {
  border-bottom-color: #22a1b3; }

.listing-block-categorization {
  display: block;
  font-size: 0.6875em;
  line-height: 1em;
  margin-bottom: 1.8181818182em;
  min-height: 1em;
  text-transform: uppercase; }
  .listing-block-categorization a {
    color: #3d3d3d;
    position: relative;
    z-index: 2; }

.listing-block-title-subtitle {
  overflow: hidden;
  max-height: 5.875em; }

.listing-block-title {
  color: #3d3d3d !important;
  display: block;
  font-size: 1.3125em;
  letter-spacing: -0.05em;
  line-height: 1.1428571429em;
  padding-bottom: 0.2380952381em;
  position: relative;
  overflow: hidden;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }

.listing-block-title--rtl {
  direction: rtl;
  text-align: right; }

.listing-block-subtitle {
  color: #3d3d3d;
  display: block;
  font-size: 1em;
  letter-spacing: -0.05em;
  line-height: 1.2em; }

.listing-block-read-more {
  display: block;
  font-size: 0.75em;
  text-transform: uppercase; }

.listing-block-remove {
  bottom: 0.625em;
  color: #ccc;
  position: absolute;
  right: 0.625em;
  z-index: 2;
  font-family: "OpenSans Semi-bold", sans-serif;
  font-style: normal;
  font-weight: 600; }
  .listing-block-remove:visited, .listing-block-remove:active {
    color: #ccc; }
  .listing-block-remove:hover {
    color: #3d3d3d;
    text-decoration: none; }

.listing-block--with-image .listing-block-content {
  bottom: 0;
  position: absolute; }
.listing-block--with-image .listing-block-title-subtitle {
  max-height: 8.25em; }
.listing-block--with-image .listing-block-title {
  font-size: 1.625em;
  letter-spacing: -0.075em;
  line-height: 1em; }
.listing-block--with-image .listing-block-subtitle {
  font-size: 1.125em; }
.listing-block--with-image .listing-block-categorization {
  margin-bottom: 0.9090909091em; }

.listing-block--featured .listing-block-content_author-image,
.listing-block--featured .listing-block-author-name,
.listing-block--featured .listing-block-geography,
.listing-block--featured .listing-block-summary {
  display: none; }

@media (min-width: 42.5em) {
  .listing-block--featured .listing-block-title {
    font-size: 2.25em;
    line-height: 1.1111111111em;
    margin-right: 3.6111111111em;
    min-height: 2.3611111111em; }
  .listing-block--featured .listing-block-content_author-image,
  .listing-block--featured .listing-block-author-name,
  .listing-block--featured .listing-block-geography,
  .listing-block--featured .listing-block-summary {
    display: block; }
  .listing-block--featured .listing-block-content_author-image {
    display: block;
    height: 7.5em;
    position: absolute;
    right: 1.5625em;
    top: 2.75em;
    width: 7.5em; }
  .listing-block--featured .listing-block-author-name {
    display: block;
    font-size: 0.875em;
    line-height: 1em;
    margin: 0.9375em 0 0;
    text-transform: uppercase;
    padding-right: 10em;
    font-family: "OpenSans Bold", sans-serif;
    font-style: normal;
    font-weight: 700; }
  .listing-block--featured .listing-block-geography {
    display: block;
    font-size: 0.6875em;
    line-height: 1em;
    margin: 0.3125em 0 0;
    text-transform: uppercase; } }
.listing-blocks.listing-blocks--takeaways .listing-block-title {
  padding-right: 2.1428571429em; }
  .listing-blocks.listing-blocks--takeaways .listing-block-title a {
    color: #3d3d3d;
    text-decoration: none; }

.lt-ie9 .listing-block {
  width: 320px; }
.lt-ie9 .listing-block-content {
  height: 160px; }
.lt-ie9 .listing-block--with-image {
  height: 340px; }
.lt-ie9 .listing-block--featured {
  height: 340px;
  width: 660px; }
  .lt-ie9 .listing-block--featured .listing-block-content {
    height: 100%; }
  .lt-ie9 .listing-block--featured .listing-block-title {
    font-size: 2.25em;
    line-height: 1.1111111111em;
    margin-right: 3.6111111111em; }
  .lt-ie9 .listing-block--featured .listing-block-content_author-image,
  .lt-ie9 .listing-block--featured .listing-block-author-name,
  .lt-ie9 .listing-block--featured .listing-block-geography,
  .lt-ie9 .listing-block--featured .listing-block-summary {
    display: block; }
  .lt-ie9 .listing-block--featured .listing-block-content_author-image {
    display: block;
    height: 7.5em;
    position: absolute;
    right: 1.5625em;
    top: 3.75em;
    width: 7.5em; }
  .lt-ie9 .listing-block--featured .listing-block-author-name {
    display: block;
    font-size: 0.875em;
    line-height: 1em;
    margin: 0.9375em 0 0;
    text-transform: uppercase;
    font-family: "OpenSans Bold", sans-serif;
    font-style: normal;
    font-weight: 700; }
  .lt-ie9 .listing-block--featured .listing-block-geography {
    display: block;
    font-size: 0.6875em;
    line-height: 1em;
    margin: 0.3125em 0 0;
    text-transform: uppercase; }

.listing-filters {
  list-style: none;
  padding: 0; }

.fwp-load-more {
  display: none !important; }

.selected-facets {
  margin-bottom: 18px; }

.selected-facet {
  font-size: 0.75em;
  text-transform: uppercase;
  background: #666666;
  color: #fff;
  padding: 0.3333333333em 0.6666666667em;
  display: inline-block;
  margin: 0 2px 2px 0; }

.listing-filter-group {
  margin: 0 0 0.1875em 0;
  padding: 0; }
  .listing-filter-group .facetwp-facet {
    margin-bottom: 0.625em; }
  .listing-filter-group .facetwp-checkbox {
    background-position: 0.9375em 50%;
    border-top: 1px solid #dedede;
    color: #3d3d3d;
    font-size: 0.875em;
    height: 3em;
    line-height: 3em;
    margin: 0;
    padding-left: 2.7142857143em;
    position: relative; }
    .listing-filter-group .facetwp-checkbox:hover {
      background-color: #f7f7f7;
      text-decoration: none; }
  .listing-filter-group .facetwp-toggle {
    font-size: 0.875em;
    padding-left: 1.0714285714em; }

.listing-filter-title {
  background-color: #dedede;
  color: #3d3d3d !important;
  display: block;
  font-size: 0.875em;
  padding: 0.9375em;
  position: relative;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }
  .listing-filter-title:hover {
    text-decoration: none; }
  .listing-filter-title:after {
    background: url("../images/icon-pixel-arrow-up-down-small.png") no-repeat 0 0;
    content: "";
    display: block;
    height: 4px;
    margin-top: -2px;
    position: absolute;
    right: 1.4285714286em;
    top: 50%;
    width: 7px; }

.listing-filter-items {
  list-style: none;
  margin: 0 0 0.1875em 0;
  padding: 0; }

.listing-filter-item a {
  border-top: 1px solid #dedede;
  color: #3d3d3d;
  display: block;
  font-size: 1.125em;
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 0.8333333333em;
  position: relative; }
  .listing-filter-item a:hover {
    background: #f7f7f7;
    text-decoration: none; }
  .listing-filter-item a:after {
    background: #dedede;
    color: #3d3d3d;
    content: "+";
    display: block;
    position: absolute;
    height: 21px;
    line-height: 21px;
    margin-top: -10px;
    text-align: center;
    right: 0.6666666667em;
    top: 50%;
    width: 21px; }
  .listing-filter-item a.selected:after {
    content: "+";
    text-align: center; }

.listing-filter-item a.on {
  color: #3d3d3d; }

.listing-filter-group--collapsed .listing-filter-title {
  margin: 0; }
  .listing-filter-group--collapsed .listing-filter-title:after {
    background-position: -493px 0; }
.listing-filter-group--collapsed .facetwp-facet {
  display: none; }

.listing-filters--active .listing-filter-group,
.listing-filters--active .listing-filter-items {
  margin: 0; }
.listing-filters--active .listing-filter-item {
  margin: 0 0 0.1875em 0; }
  .listing-filters--active .listing-filter-item a {
    background-color: #3d3d3d;
    color: #fff;
    font-size: 0.8125em;
    height: 3.4615384615em;
    line-height: 3.4615384615em;
    padding: 0 1.1538461538em;
    font-family: "OpenSans Semi-bold", sans-serif;
    font-style: normal;
    font-weight: 600; }
    .listing-filters--active .listing-filter-item a:after {
      content: "x";
      line-height: 19px;
      right: 0.9230769231em;
      font-family: "Open Sans", sans-serif;
      font-style: normal;
      font-weight: 300; }
    .listing-filters--active .listing-filter-item a:before {
      font-family: "Open Sans", sans-serif;
      font-style: normal;
      font-weight: 300; }
.listing-filters--active .listing-filter-group--strategies .listing-filter-item a:before {
  content: "Strategy: "; }
.listing-filters--active .listing-filter-group--issues .listing-filter-item a:before {
  content: "Issue: "; }
.listing-filters--active .listing-filter-group--content-types .listing-filter-item a:before {
  content: "Type: "; }
.listing-filters--active .listing-filter-group--org-size .listing-filter-item a:before {
  content: "Org Size: "; }
.listing-filters--active .listing-filter-group--experience .listing-filter-item a:before {
  content: "Experience: "; }
.listing-filters--active .listing-filter-group--language .listing-filter-item a:before {
  content: "Language: "; }

.listing-pagination {
  display: none;
  list-style: none;
  margin: 1.875em 0;
  overflow: hidden;
  padding: 0; }

.listing-pagination-link {
  float: left; }

.listing-pagination-link--next {
  float: right; }

.member-profile {
  text-align: center; }

.member-profile-image {
  height: 90px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  width: 90px; }
  .member-profile-image img {
    width: 100%; }

.member-profile-name {
  display: block;
  text-transform: uppercase;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }

.member-profile-organization {
  display: block; }

.member-profile-edit {
  border-top: 1px solid #dedede;
  font-size: 0.6875em;
  margin-top: 2.2727272727em;
  padding-top: 1.3636363636em;
  text-transform: uppercase; }

.modal {
  background: #fff;
  display: none;
  padding: 1.5625em; }
  .modal > :first-child {
    margin-top: 0; }
  .modal > :last-child {
    margin-bottom: 0; }

.modal--reading-list-remove__buttons {
  text-align: center; }

.page-section {
  position: relative; }

.page-section--page-header {
  background-color: #ffffff; }

.page-section--page {
  background-color: #ffffff; }

.page-section--hero {
  background-color: #ffffff; }

.page-section--site-nav-bar {
  background-color: #666666;
  border-bottom: 5px solid #ff8a00; }

.page-section--page-footer {
  background-color: #3d3d3d;
  border-top: 5px solid #ff8a00; }

.page-sharing .gig-bar-container td {
  display: block; }
  @media (max-width: 72.5em) {
    .page-sharing .gig-bar-container td {
      display: table-cell; }
      .page-sharing .gig-bar-container td img {
        width: 27px; } }

body.page--share-your-wisdom .form--share-your-wisdom {
  float: right;
  margin: 0 0 0.9375em 1.875em;
  position: relative;
  width: 28.75em;
  z-index: 2; }
  @media (max-width: 53.75em) {
    body.page--share-your-wisdom .form--share-your-wisdom {
      float: none;
      margin: 0 0 1.5625em 0;
      width: 100%; } }

body.curated_content .content-layout--detail-image .content-layout-secondary {
  width: 18.75em; }

.page-title h1 {
  font-size: 3.25em;
  letter-spacing: -0.05em;
  line-height: 1.0769230769em;
  margin: 0 0 0.9615384615em; }
@media (max-width: 63.9375em) {
  .page-title {
    font-size: 14px; } }
@media (max-width: 47.9375em) {
  .page-title {
    font-size: 10px; } }
@media (max-width: 35.4375em) {
  .page-title {
    font-size: 8px; } }
.page-title.author-title {
  margin-bottom: 2.5em; }
  .page-title.author-title h1 {
    margin-bottom: 0.3846153846em; }

.page-title--rtl h1 {
  direction: rtl; }

.page-title--search-results h1 {
  font-size: 2.25em;
  letter-spacing: -0.025em;
  line-height: 1em;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300; }
  .page-title--search-results h1 strong {
    font-family: "OpenSans Semi-bold", sans-serif;
    font-style: normal;
    font-weight: 600; }

.poll {
  background: #f7f7f7;
  padding: 1.875em; }
  .poll > :first-child {
    margin-top: 0; }
  .poll > :last-child {
    margin-bottom: 0; }
  .poll .form-field-wrapper--select-radio li:first-child {
    margin-top: 0; }

.poll-results-chart img {
  width: 100%; }

.poll-results-answers {
  list-style: none;
  padding: 0; }
  .poll-results-answers .poll-results-answer {
    display: block;
    text-align: center; }
    .poll-results-answers .poll-results-answer:before {
      display: none; }

.related-content {
  clear: both;
  margin-top: 3.125em; }
  .related-content h2 {
    margin-top: 0; }

.search-field {
  display: inline-block;
  position: relative; }
  .search-field .search-field-text {
    padding-right: 2.5em;
    width: 100%; }
  .search-field .search-field-button {
    background: url(../images/icon-search.png);
    background-size: 100%;
    border: 0;
    height: 1em;
    margin-top: -0.5em;
    padding: 0;
    position: absolute;
    right: 0.9375em;
    top: 50%;
    width: 1em;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden; }
  .search-field .lt-ie9 .search-field-button {
    background: none;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/assets/images/icon-search.png', sizingMethod='scale'); }

.section-content {
  margin: 0 auto;
  max-width: 62.5em;
  padding: 2.5em 1.5625em;
  position: relative; }
  @media (max-width: 35.4375em) {
    .section-content {
      padding-left: 0.9375em;
      padding-right: 0.9375em; } }

.section-content--page-header {
  padding-bottom: 0;
  padding-top: 0; }
  .section-content--page-header .section-content__site-logo {
    padding: 1.5625em 0;
    position: relative; }
    .section-content--page-header .section-content__site-logo h1.site-logo--is-beta:before {
      content: 'beta';
      display: block;
      font-size: 0.6875em;
      left: 0;
      letter-spacing: 0;
      position: absolute;
      text-indent: 0;
      text-transform: uppercase;
      top: -1.8181818182em;
      font-family: "Open Sans", sans-serif;
      font-style: normal;
      font-weight: 300; }
    @media (max-width: 56.25em) {
      .section-content--page-header .section-content__site-logo {
        font-size: 15px; } }
    @media (max-width: 53.4375em) {
      .section-content--page-header .section-content__site-logo {
        font-size: 13px; } }
    @media (max-width: 49.5em) {
      .section-content--page-header .section-content__site-logo h1.site-logo {
        margin: 0 auto; } }
    @media (max-width: 35.4375em) {
      .section-content--page-header .section-content__site-logo {
        font-size: 11px; } }
    @media (max-width: 25em) {
      .section-content--page-header .section-content__site-logo {
        font-size: 10px; } }
    @media (max-width: 21.875em) {
      .section-content--page-header .section-content__site-logo {
        font-size: 9px; } }
  .section-content--page-header .section-content__site-nav {
    margin-top: 0;
    position: absolute;
    right: 1.5625em;
    top: 50%; }
    @media (max-width: 56.25em) {
      .section-content--page-header .section-content__site-nav .site-nav--utility > li {
        margin-left: 2.0909090909em; } }
    @media (max-width: 53.4375em) {
      .section-content--page-header .section-content__site-nav .site-nav--utility > li {
        margin-left: 1.3636363636em; } }
    @media (max-width: 49.5em) {
      .section-content--page-header .section-content__site-nav {
        margin: -0.625em 0 0;
        padding-bottom: 1.5625em;
        position: static;
        text-align: center; }
        .section-content--page-header .section-content__site-nav .site-nav--utility > li {
          display: inline-block;
          float: none; }
          .section-content--page-header .section-content__site-nav .site-nav--utility > li:first-child {
            margin-left: 0; }
          .section-content--page-header .section-content__site-nav .site-nav--utility > li li {
            text-align: left; } }
    @media (max-width: 35.4375em) {
      .section-content--page-header .section-content__site-nav {
        font-size: 15px;
        margin-top: -0.625em;
        padding-bottom: 0.9375em; }
        .section-content--page-header .section-content__site-nav .site-nav--utility > li {
          display: block;
          margin: 0;
          padding: 0.3125em 0; }
          .section-content--page-header .section-content__site-nav .site-nav--utility > li.has-kids:hover {
            background: transparent; }
            .section-content--page-header .section-content__site-nav .site-nav--utility > li.has-kids:hover > a {
              color: #3d3d3d;
              text-decoration: underline; }
          .section-content--page-header .section-content__site-nav .site-nav--utility > li ul {
            background: transparent;
            padding-top: 0.3125em;
            position: static;
            width: auto; }
            .section-content--page-header .section-content__site-nav .site-nav--utility > li ul li {
              margin: 0;
              padding: 0.3125em 0;
              text-align: center; }
              .section-content--page-header .section-content__site-nav .site-nav--utility > li ul li a {
                border: 0;
                color: #3d3d3d;
                padding: 0; }
                .section-content--page-header .section-content__site-nav .site-nav--utility > li ul li a:hover {
                  background: transparent;
                  text-decoration: underline; } }

.section-content--site-nav-bar {
  height: 5em;
  padding-bottom: 0;
  padding-top: 0; }
  @media (max-width: 57.5em) {
    .section-content--site-nav-bar {
      font-size: 15px; } }
  @media (max-width: 55.625em) {
    .section-content--site-nav-bar {
      font-size: 14px; } }
  @media (max-width: 50.9375em) {
    .section-content--site-nav-bar {
      font-size: 13px; } }
  @media (max-width: 47.5em) {
    .section-content--site-nav-bar {
      font-size: 12px; } }
  .section-content--site-nav-bar .section-content__site-nav .site-nav > li {
    line-height: 2.9166666667em; }
  .section-content--site-nav-bar .section-content__search-field {
    float: right;
    line-height: 5em; }
    @media (max-width: 44.375em) {
      .section-content--site-nav-bar .section-content__search-field {
        float: none; }
        .section-content--site-nav-bar .section-content__search-field .search-field {
          display: block;
          margin-right: 60px; } }

.section-content--page {
  padding-bottom: 3.125em;
  padding-top: 3.125em; }

.section-content--hero {
  padding-bottom: 0;
  padding-top: 3.75em;
  position: static; }
  @media (max-width: 47.9375em) {
    .section-content--hero {
      padding-top: 3.125em; } }

.section-content--home-section {
  overflow: hidden;
  padding-bottom: 1.875em;
  padding-top: 1.875em;
  text-align: center; }
  @media (max-width: 47.9375em) {
    .section-content--home-section {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 35.4375em) {
    .section-content--home-section {
      padding-bottom: 0; } }

.section-content--home-section-site-map {
  padding-top: 3.125em; }
  @media (max-width: 35.4375em) {
    .section-content--home-section-site-map {
      padding-top: 1.5625em; } }

.section-content--home-section-fc-features {
  padding-left: 0;
  padding-right: 0; }

.section-content--account-section {
  overflow: hidden; }

.section-content--page-footer {
  overflow: hidden;
  position: relative; }
  .section-content--page-footer .section-content__fc-identity {
    float: left;
    width: 9.6875em; }
  .section-content--page-footer .section-content__site-map {
    position: relative; }
  @media (max-width: 63.9375em) {
    .section-content--page-footer .section-content__fc-identity {
      float: none;
      width: auto; }
    .section-content--page-footer .section-content__site-map {
      clear: both;
      margin: 0.9375em 0 0 0; } }
  @media (max-width: 47.9375em) {
    .section-content--page-footer .section-content__fc-identity {
      text-align: center; } }

.section-content__page-title {
  text-align: center; }

.section-content--with-sharing .section-content__page-sharing {
  right: -4.6875em;
  position: absolute;
  width: auto; }
@media (max-width: 72.5em) {
  .section-content--with-sharing {
    padding-bottom: 4.6875em; }
    .section-content--with-sharing .section-content__page-sharing {
      bottom: 1.5625em;
      left: 1.5625em;
      right: auto;
      top: auto; } }

.site-logo {
  background-image: url(../images/logo-grantcraft-by-candid.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative; }
  @media (max-width: 49.5em) {
    .site-logo {
      background-position: 50% 50%; } }
  .site-logo a {
    display: block; }
  .site-logo .site-logo-home-link {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden; }
  .site-logo .site-logo-fc-link {
    height: 25px;
    position: absolute;
    left: 17.5%;
    bottom: 2px;
    width: 50%;
    z-index: 2;
    text-indent: 110%;
    white-space: nowrap;
    overflow: hidden; }
    @media (max-width: 49.5em) {
      .site-logo .site-logo-fc-link {
        height: 20px;
        bottom: 0px;
        left: 33%; } }

h1.site-logo {
  font-size: 1em;
  height: 6.25em;
  margin: 0;
  width: 30em; }
  @media (max-width: 49.5em) {
    h1.site-logo {
      margin-bottom: 0.625em; } }

.site-map {
  display: flex;
  overflow: hidden; }
  .site-map h3 {
    color: #ffffff;
    font-size: 0.6875em;
    text-transform: uppercase;
    font-family: "OpenSans Semi-bold", sans-serif;
    font-style: normal;
    font-weight: 600; }
  .site-map ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .site-map li {
    font-size: 0.9375em;
    list-style: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0; }
  .site-map .site-map-section:first-child {
    margin-left: 0; }
  @media (max-width: 47.9375em) {
    .site-map {
      display: block; }
      .site-map li {
        font-size: 0.9375em; } }

.site-map-section {
  margin-left: 3.125em; }
  .site-map-section:first-child {
    margin-left: 0; }
  .site-map-section:last-child {
    margin-left: auto;
    text-align: right; }
  @media (max-width: 47.9375em) {
    .site-map-section {
      float: none;
      margin: 0;
      text-align: center; }
      .site-map-section:last-child {
        text-align: center; } }

.site-nav {
  list-style: none;
  margin: 0;
  padding: 0; }
  .site-nav > li {
    float: left; }

.site-nav--primary {
  font-size: 1.5em; }
  .site-nav--primary > li {
    list-style: none;
    margin: 0.2083333333em 0.8333333333em 0 0;
    padding: 0 0.625em 0 0.625em;
    position: relative;
    border-radius: 10px 10px 0 0;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 300; }
    .site-nav--primary > li:hover {
      background-color: #3d3d3d; }
      .site-nav--primary > li:hover > a {
        color: #ff8a00;
        text-shadow: 0 1px 0 #000000; }
        .site-nav--primary > li:hover > a:after {
          background-position: right -194px; }
      .site-nav--primary > li:hover ul {
        display: block; }
    .site-nav--primary > li a {
      color: #ffffff; }
      .site-nav--primary > li a:hover {
        text-decoration: none; }
    .site-nav--primary > li > a {
      display: block; }
      .site-nav--primary > li > a:after {
        background: url("../images/icon-pixel-arrow-down-white.png") no-repeat;
        content: '';
        display: inline-block;
        height: 6px;
        margin-left: 0.625em;
        vertical-align: middle;
        width: 10px; }
    .site-nav--primary > li ul {
      background: #3d3d3d;
      border-bottom: 5px solid #ff8a00;
      display: none;
      font-size: 0.7083333333em;
      left: 0;
      list-style: none;
      padding: 0;
      position: absolute;
      top: 3em;
      width: 30em;
      z-index: 100;
      /* TODO: Recreate columns for primary nav? */ }
      .site-nav--primary > li ul .col-1, .site-nav--primary > li ul .col-2 {
        float: left;
        width: 50%; }
        @media (max-width: 44.375em) {
          .site-nav--primary > li ul .col-1, .site-nav--primary > li ul .col-2 {
            float: none;
            width: auto; } }
      .site-nav--primary > li ul li {
        border-bottom: 1px solid #666666;
        line-height: 1em;
        list-style: none;
        margin: 0;
        padding: 0; }
        .site-nav--primary > li ul li a {
          background: none;
          display: block;
          padding: 0.625em 0.8333333333em;
          text-shadow: 0 1px 0 #000000; }
          .site-nav--primary > li ul li a:hover {
            background: #ff8a00; }

.site-nav-hamburger {
  border-left: 1px solid #ffffff;
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 55px;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden; }
  .site-nav-hamburger a {
    display: block;
    height: 100%;
    width: 100%; }
    .site-nav-hamburger a:after {
      background: url(../images/hamburger.png) no-repeat;
      background-size: 100%;
      content: '';
      display: block;
      height: 16px;
      left: 50%;
      margin: -8px 0 0 -8px;
      position: absolute;
      top: 50%;
      width: 16px; }

@media (max-width: 44.375em) {
  .site-nav--primary {
    background-color: #3d3d3d;
    border-bottom: 5px solid #ff8a00;
    display: none;
    left: 0;
    height: 100%;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 100; }
    .site-nav--primary.active {
      display: block; }
    .site-nav--primary > li {
      margin-left: 0;
      margin-right: 0;
      padding: 0;
      text-align: center;
      width: 33%; }
      .site-nav--primary > li ul {
        width: 100%; }
        .site-nav--primary > li ul li {
          text-align: left; }

  .site-nav-hamburger {
    display: block; } }
@media (max-width: 31.25em) {
  .site-nav--primary {
    display: none;
    height: auto; }
    .site-nav--primary.active {
      display: block; }
    .site-nav--primary > li {
      border-top: 1px solid #fff;
      float: none;
      margin: 0;
      width: auto;
      border-radius: 0; }
      .site-nav--primary > li:hover > ul {
        display: none; }
      .site-nav--primary > li.active > ul {
        display: block; }
      .site-nav--primary > li > ul {
        border-bottom: 0;
        margin: 0 0 15px;
        position: static; }
        .site-nav--primary > li > ul li {
          text-align: center; }
          .site-nav--primary > li > ul li a {
            border: none; } }
.site-nav--utility > li {
  font-size: 0.6875em;
  list-style: none;
  margin: 0 0 0 1.8181818182em;
  padding: 0.625em;
  position: relative;
  text-transform: uppercase; }
  .site-nav--utility > li.emphasis {
    font-family: "OpenSans Semi-bold", sans-serif;
    font-style: normal;
    font-weight: 600; }
  .site-nav--utility > li a {
    color: #3d3d3d; }
  .site-nav--utility > li.menu-item-has-children {
    z-index: 100; }
    .site-nav--utility > li.menu-item-has-children:hover {
      background: #3d3d3d;
      border-radius: 5px 5px 0 0; }
      .site-nav--utility > li.menu-item-has-children:hover > ul {
        display: block; }
      .site-nav--utility > li.menu-item-has-children:hover > a {
        color: #ff8a00;
        text-decoration: none; }
  .site-nav--utility > li ul {
    background: #3d3d3d;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 13.75em;
    z-index: 105; }
    .site-nav--utility > li ul li {
      font-size: 1em;
      list-style: none;
      margin: 0;
      padding: 0; }
      .site-nav--utility > li ul li a {
        border-bottom: 1px solid #666666;
        color: #ffffff;
        display: block;
        padding: 0.625em 0.9375em; }
        .site-nav--utility > li ul li a:hover {
          background: #ff8a00;
          text-decoration: none; }

#social-login-target {
  max-width: 100%; }

.social-icons {
  margin: 0;
  padding: 0; }

.social-icon {
  background-size: 100%;
  display: inline-block;
  height: 1.25em;
  margin: 0 0 0 0.3125em; }
  .social-icon:first-child {
    margin-left: 0; }
  .social-icon img {
    height: 100%; }

.subscription-tools {
  list-style: none;
  padding: 0; }
  .subscription-tools > .subscription-tool {
    list-style: none;
    padding: 0; }

.subscription-tool {
  margin: 0.625em 0; }
  .subscription-tool a {
    color: #3d3d3d;
    display: block; }
    .subscription-tool a:before {
      display: inline-block;
      content: '';
      padding-right: 0.625em;
      vertical-align: middle; }

.subscription-tool--rss a:before {
  background: url("../images/icons-subscription/rss.png") no-repeat;
  height: 16px;
  width: 16px;
  /* height: icons-subscription-sprite-height($icon);
  width: icons-subscription-sprite-width($icon);
  @include icons-subscription-sprite($icon); */ }

.subscription-tool--email a:before {
  background: url("../images/icons-subscription/email.png") no-repeat;
  height: 12px;
  width: 16px;
  /* height: icons-subscription-sprite-height($icon);
  width: icons-subscription-sprite-width($icon);
  @include icons-subscription-sprite($icon); */ }

.tabs-wrap {
  position: relative; }

.tab-control {
  display: none;
  height: 3.375em;
  position: absolute;
  width: 3.4375em;
  z-index: 10; }

.tab-control--previous {
  left: 0; }

.tab-control--next {
  right: 0; }

.tabs {
  border-bottom: 1px solid #dcdcdc;
  height: 3.5em;
  list-style: none;
  margin: 1.5625em 0 3.125em;
  padding: 0; }

.gc-tab:first-child {
  border-left: 1px solid #dcdcdc; }

.gc-tab {
  box-sizing: border-box;
  float: left;
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  line-height: 1em;
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-transform: uppercase;
  font-family: "OpenSans Semi-bold", sans-serif;
  font-style: normal;
  font-weight: 600; }
  .gc-tab:first-child {
    margin-top: 0; }
  .gc-tab a {
    background-color: #f7f7f7;
    border: 1px solid #dcdcdc;
    border-left: 0;
    color: #3d3d3d;
    display: block;
    padding: 1.5625em 1.875em;
    position: relative;
    top: 1px; }
    .gc-tab a.selected, .gc-tab a:hover {
      background-color: #ffffff;
      border-bottom-color: #ffffff;
      text-decoration: none; }

.tab-content {
  display: none; }
  .tab-content.selected {
    display: block; }

.tab-content__content-layout .content-layout {
  border-top: 0;
  padding-top: 0; }

.tabs-wrap--home .gc-tab {
  text-align: center;
  width: 25%; }

@media (max-width: 47.9375em) {
  .tab-control {
    display: block; }

  .gc-tab:first-child {
    border-left: 0; }

  .tabs {
    margin: 0.9375em 0 1.875em; }

  .gc-tab {
    float: none;
    text-align: center;
    width: auto; }
    .gc-tab a {
      border: 0;
      display: none; }
      .gc-tab a.selected {
        display: block; }

  .tabs-wrap--home .tabs {
    margin: 0; }
  .tabs-wrap--home .tab {
    width: auto; }

  .tabs-wrap--pages {
    display: none; } }
.translations-dropdown {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative; }
  .translations-dropdown .button--translations {
    width: 100%; }

.translations-dropdown-button {
  list-style: none;
  margin: 0;
  padding: 0; }
  .translations-dropdown-button:hover .translations-dropdown-translations {
    display: block; }
  .translations-dropdown-button:first-child {
    margin-top: 0; }

.translations-dropdown-translations {
  border-radius: 5px;
  box-sizing: border-box;
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 15px 0 0 0;
  position: absolute;
  top: 4.0625em;
  width: 100%;
  z-index: 100; }
  .translations-dropdown-translations > :first-child:before {
    border: 10px solid transparent;
    border-bottom-color: #3d3d3d;
    content: '';
    display: block;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    top: -5px;
    width: 0; }

.translations-dropdown-translation {
  background-color: #3d3d3d;
  border-bottom: 1px solid #fff;
  font-size: 0.8125em;
  line-height: 1em;
  list-style: none;
  margin: 0;
  padding: 0.625em 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%; }
  .translations-dropdown-translation a {
    color: #fff;
    text-decoration: none; }
  .translations-dropdown-translation:first-child {
    margin-top: 0; }

.type-icon {
  color: #ffffff !important;
  display: inline-block;
  font-family: 'icons';
  font-size: 1.125em;
  line-height: 1em;
  overflow: hidden;
  padding: 0.7222222222em 0;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  width: 2.5em; }
  .type-icon .assistive-text {
    left: -999px;
    position: absolute; }

.type-icon--hoverable:hover:after {
  visibility: hidden; }
.type-icon--hoverable:hover .assistive-text {
  font-size: 0.3111111111em;
  left: 0;
  line-height: 8.2142857143em;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  font-family: "OpenSans Bold", sans-serif;
  font-style: normal;
  font-weight: 700; }

.type-icon--large {
  font-size: 3.125em;
  padding: 0.7222222222em 0; }

.type-icon--circular {
  border-radius: 50%; }

.type-icon--blog {
  background-color: #1ac908; }
  .type-icon--blog:after {
    content: '\e800'; }

.type-icon--case-studies {
  background-color: #f1b701; }
  .type-icon--case-studies:after {
    content: '\e801'; }

.type-icon--curated-content {
  background-color: #b10079; }
  .type-icon--curated-content:after {
    content: '\e802'; }

.type-icon--discussions {
  background-color: #3646bb; }
  .type-icon--discussions:after {
    content: '\e803'; }

.type-icon--events {
  background-color: #6334aa; }
  .type-icon--events:after {
    content: '\e804'; }

.type-icon--foundation-center-features {
  background-color: #3465aa;
  padding: 0.375em 0; }
  .type-icon--foundation-center-features:after {
    background: url("../images/icon-fc-feature.png") no-repeat transparent 50% 50%;
    background-size: 100%;
    content: ' ';
    display: inline-block;
    height: 1.5em;
    width: 1.5em; }

.lt-ie9 .type-icon--foundation-center-features:after {
  background-image: url("../images/icon-fc-feature@1x.png"); }
.lt-ie9 .type-icon--foundation-center-features.type-icon--large:after {
  background-image: url("../images/icon-fc-feature.png"); }

.type-icon--guided-reading {
  background-color: #7c378a; }
  .type-icon--guided-reading:after {
    content: '\e805'; }

.type-icon--guides {
  background-color: #ff8a00; }
  .type-icon--guides:after {
    content: '\e806'; }

.type-icon--infographics {
  background-color: #f19f01; }
  .type-icon--infographics:after {
    content: '\e807'; }

.type-icon--podcasts {
  background-color: #09a275; }
  .type-icon--podcasts:after {
    content: '\e808'; }

.type-icon--takeaways {
  background-color: #e43304; }
  .type-icon--takeaways:after {
    content: '\e809'; }

.type-icon--tools {
  background-color: #dc0030; }
  .type-icon--tools:after {
    content: '\e80a'; }

.type-icon--videos {
  background-color: #22a1b3; }
  .type-icon--videos:after {
    content: '\e80b'; }

.type-icon--content_series {
  background-color: #000; }
  .type-icon--content_series:after {
    content: '\e800'; }

.type-icon--text-right {
  display: block;
  overflow: visible; }
  .type-icon--text-right .assistive-text {
    color: #3d3d3d;
    font-size: 0.7777777778em;
    left: 3.5714285714em;
    margin-top: -0.5714285714em;
    top: 50%;
    white-space: nowrap;
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    font-weight: 300; }
  .type-icon--text-right:hover span {
    text-decoration: underline; }

.wysiwyg-content {
  font-size: 18px;
  line-height: 1.875em; }
  .wysiwyg-content h2 {
    font-size: 1.5555555556em; }
  .wysiwyg-content h3 {
    font-size: 1em;
    letter-spacing: -0.05em;
    line-height: 1em;
    margin: 1.875em 0 0;
    text-transform: uppercase;
    font-family: "OpenSans Bold", sans-serif;
    font-style: normal;
    font-weight: 700; }
  .wysiwyg-content ul {
    list-style: none; }
  .wysiwyg-content li {
    margin: 0.625em 0; }
  .wysiwyg-content ul li {
    position: relative; }
    .wysiwyg-content ul li:before {
      color: #ecc200;
      content: '\25C6';
      display: block;
      left: -1.25em;
      position: absolute;
      top: 0; }
  .wysiwyg-content .image-wrapper {
    margin: 1.5625em 0; }
    .wysiwyg-content .image-wrapper img {
      height: auto !important;
      max-width: 100%; }
    .wysiwyg-content .image-wrapper.left {
      float: left;
      margin: 0.5625em 1.5625em 0.9375em 0; }
    .wysiwyg-content .image-wrapper.right {
      float: right;
      margin: 0.5625em 0 0.9375em 1.5625em; }
  .wysiwyg-content .media-embed {
    margin: 1em 0; }
  @media (max-width: 63.9375em) {
    .wysiwyg-content {
      font-size: 17px; } }
  @media (max-width: 47.9375em) {
    .wysiwyg-content {
      font-size: 16px; } }

.citation {
  font-size: 0.75em;
  line-height: 1.3333333333em;
  text-transform: uppercase;
  font-family: "OpenSans Semi-bold", sans-serif;
  font-style: normal;
  font-weight: 600; }

.intro-text {
  font-size: 1.3333333333em;
  letter-spacing: -0.025em;
  line-height: 1.25em; }

.wysiwyg-content__author-bio, .wysiwyg-content__content-type-description {
  margin: 3.125em 0 0 !important;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-weight: 300; }
  .wysiwyg-content__author-bio .author-bio > :first-child, .wysiwyg-content__content-type-description .author-bio > :first-child {
    margin-top: 0; }
  .wysiwyg-content__author-bio.no-margin, .wysiwyg-content__content-type-description.no-margin {
    margin-top: 0 !important; }

.wysiwyg-content__associated-guide {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-weight: 300; }

.wysiwyg-content__content-series-highlights .image-wrapper {
  text-align: center;
  margin: 0 auto 10px auto; }

.fc-collapse h4::before {
  content: "+";
  padding-right: 10px; }
.fc-collapse.open h4::before {
  content: "-"; }

/* global media specific */
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")";
    word-wrap: break-word; }

  .author-block--with-image a[href]:after,
  .author-info-name a[href]:after {
    display: none;
    content: ""; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .page-section--page-header .section-content__site-nav,
  .page-section--site-nav-bar,
  .type-icon,
  .page-sharing,
  .content-layout-secondary__buttons,
  .content-block-secondary--categorization,
  .related-content,
  #comments,
  .page-section--page-footer {
    display: none; }

  .section-content__site-logo {
    padding: 0; }
    .section-content__site-logo .site-logo {
      display: none; }
    .section-content__site-logo:after {
      content: url(/assets/images/logo-grantcraft-v3.png);
      display: block;
      height: 35px;
      margin: 0 auto;
      width: 480px; }

  .content-header-info {
    margin: 0; } }

/*# sourceMappingURL=core.css.map */
